/* ========================================
   HAMAR DIGITAL - Premium Agency Website
   ======================================== */

/* CSS Variables */
:root {
    --primary-dark: #2B0B63;
    --primary-light: #5A189A;
    --secondary: #FFD60A;
    --accent-orange: #FF8C00;
    --accent-gold: #FFB347;
    --white: #ffffff;
    --light-bg: #f8f5ff;
    --gray-light: #f0edf5;
    --gray: #666680;
    --dark: #1a1a2e;
    --shadow: 0 10px 40px rgba(43, 11, 99, 0.15);
    --shadow-hover: 0 20px 60px rgba(43, 11, 99, 0.25);
    --gradient: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    --gradient-accent: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
    --transition: all 0.3s ease;
    --radius: 16px;
    --radius-lg: 24px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(255, 214, 10, 0.4);
}

.btn-primary:hover {
    background: #ffdf33;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 214, 10, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border-color: var(--primary-light);
    padding: 12px 24px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--white);
}

.btn-watch {
    background: var(--gradient);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 25px;
}

.btn-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(90, 24, 154, 0.4);
}

.btn-review {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 214, 10, 0.4);
    transition: all 0.3s ease;
}

.btn-review:hover {
    background: #ffdf33;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 214, 10, 0.5);
}

/* ========================================
   CONTACT SECTION - MODERN DESIGN
   ======================================== */
.contact-section {
    background: linear-gradient(135deg, #2a0a4a 0%, #4b1a7a 100%);
    padding: 100px 0;
}

.contact-modern-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Side - Contact Info */
.contact-info-side {
    position: sticky;
    top: 100px;
}

.contact-info-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-description {
    color: #e6e6e6;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-info-item:hover .contact-info-icon {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact-info-details h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-details a,
.contact-info-details span {
    color: #e6e6e6;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-details a:hover {
    color: var(--secondary);
}

/* Social Media Section */
.contact-social-section h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icon-box {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B0B63;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-box:hover {
    background: #FFD60A;
    color: #2B0B63;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Right Side - Contact Form */
.contact-form-side {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-card h3 {
    color: #2B0B63;
    font-size: 24px;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: #2B0B63;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e4f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #faf9fc;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2B0B63;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(43, 11, 99, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-contact-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2B0B63, #5A189A);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(43, 11, 99, 0.4);
}

.btn-contact-submit:active {
    transform: scale(0.98);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-modern-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        position: static;
    }
    
    .contact-info-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 25px;
    }
    
    .contact-info-content h2 {
        font-size: 28px;
    }
}

/* Reviews Hero Section */
.reviews-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    text-align: center;
}

.reviews-hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-hero-content h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.reviews-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.reviews-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-hero-buttons .btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(255, 214, 10, 0.4);
    transition: all 0.3s ease;
}

.reviews-hero-buttons .btn-primary:hover {
    background: #ffdf33;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 214, 10, 0.5);
}

.reviews-hero-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.reviews-hero-buttons .btn-secondary:hover {
    background: #fff;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .reviews-hero-content h2 {
        font-size: 32px;
    }
    
    .reviews-hero-content p {
        font-size: 16px;
    }
    
    .reviews-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-hero-buttons .btn-primary,
    .reviews-hero-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

.btn-full {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 214, 10, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 40%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.floating-card .icon {
    font-size: 24px;
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ========================================
   STORY SECTION
   ======================================== */
.story-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.story-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.story-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.story-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.story-card p {
    font-size: 15px;
    color: var(--gray);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ========================================
   WATCH VIDEO SECTION
   ======================================== */
.watch-video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    text-align: center;
}

.watch-video-content {
    max-width: 600px;
    margin: 0 auto;
}

.watch-video-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.watch-video-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.portfolio-media {
    height: 250px;
    overflow: hidden;
}

.portfolio-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-media img {
    transform: scale(1.1);
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-section {
    padding: 100px 0;
    background: var(--gradient);
}

.video-section .section-header h2,
.video-section .section-header .section-subtitle {
    color: var(--white);
}

.video-section .section-line {
    background: var(--secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-preview {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 11, 99, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-dark);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 214, 10, 0.5);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn span {
    margin-left: 4px;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.video-info p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-section {
    padding: 100px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.project-image {
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.client-name {
    font-size: 14px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.project-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 350px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.review-text {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
}

.review-author h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.review-author p {
    font-size: 14px;
    color: var(--gray);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-light);
    color: var(--primary-light);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-light);
    color: var(--white);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-section .container {
    overflow: visible;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    -webkit-scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.pricing-card {
    scroll-snap-align: start;
}

.pricing-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    background: var(--gradient);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured * {
    color: var(--white);
}

.pricing-card.featured .pricing-price .amount,
.pricing-card.featured .pricing-price .currency {
    color: #ffffff;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: #000000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 10px;
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul {
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 11, 99, 0.1);
    color: var(--gray);
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card .btn-primary {
    background: var(--secondary);
    color: var(--primary-dark);
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary-dark);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--gradient);
}

.contact-section .section-header h2,
.contact-section .section-header .section-subtitle {
    color: var(--white);
}

.contact-section .section-line {
    background: var(--secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

.form-group textarea {
    resize: vertical;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item a {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-light);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-logo h3 span {
    color: var(--secondary);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-links h4,
.footer-services h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--secondary);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .portfolio-grid,
    .video-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-grid,
    .portfolio-grid,
    .video-grid,
    .projects-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .pricing-header h3 {
        font-size: 18px;
    }
    
    .pricing-price .amount {
        font-size: 32px;
    }
    
    .pricing-desc {
        font-size: 12px;
    }
    
    .pricing-features li {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .review-card {
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        overflow-x: hidden;
    }
    
    .pricing-card {
        padding: 20px 10px;
    }
    
    .pricing-header h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .pricing-price .currency {
        font-size: 18px;
    }
    
    .pricing-price .amount {
        font-size: 28px;
    }
    
    .pricing-features ul {
        padding-left: 10px;
    }
    
    .pricing-features li {
        font-size: 11px;
        padding: 6px 0;
    }
    
    .btn {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary-light);
    color: var(--white);
}
