        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Minimal Color Scheme */
            --primary: #1e7f5c;
            --primary-dark: #1e7f5c;
            --primary-light: #1e7f5c;

            --secondary: #10b981;
            --accent: #f59e0b;
            --danger: #ef4444;

            --bg: #ffffff;
            --bg-alt: #f9fafb;
            --text: #111827;
            --text-light: #6b7280;
            --border: #e5e7eb;

            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

            --radius: 1rem;
            --radius-lg: 1.5rem;
            --radius-full: 9999px;

            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
            box-sizing: border-box;
        }

        * {
            box-sizing: border-box;
        }

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

        /* ============================================
           MODERN NAVBAR WITH PROMINENT BUTTONS
        ============================================ */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: nowrap;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: nowrap;
        }

        .nav-links li {
            white-space: nowrap;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            white-space: nowrap;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

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

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown-toggle {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            background: white;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 0.5rem 0;
            min-width: 180px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1001;
        }

        .nav-dropdown:hover .nav-dropdown-menu,
        .nav-dropdown:focus-within .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-dropdown-menu a {
            display: block;
            padding: 0.5rem 1rem;
            color: var(--text);
            text-decoration: none;
        }

        .nav-dropdown-menu a:hover {
            background: var(--bg-alt);
        }

        .mobile-auth {
            display: none !important;
        }

        .desktop-auth {
            display: flex;
        }

        /* PROMINENT LOGIN BUTTONS */
        .auth-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: nowrap;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.15);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .btn:hover::before {
            transform: scaleX(1);
        }

        .btn span,
        .btn i {
            position: relative;
            z-index: 1;
        }

        .btn-student {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .btn-student:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .btn-teacher {
            background: linear-gradient(135deg, var(--secondary), #34d399);
            color: white;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .btn-teacher:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .btn-parent {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .btn-parent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

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

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 0.5rem;
            background: var(--bg-alt);
            border: 2px solid var(--border);
            border-radius: 8px;
            z-index: 1002;
            position: fixed;
            right: 1rem;
            top: 0.75rem;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .mobile-toggle:hover span {
            background: white;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 2px;
            transition: var(--transition);
        }

        .mobile-toggle.active {
            background: var(--primary);
            border-color: var(--primary);
        }

        .mobile-toggle.active span {
            background: white;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ========================================
           POPUP MODAL
           ======================================== */

        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.75);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity var(--transition-normal), visibility var(--transition-normal);
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-modal {
            background: transparent;
            border-radius: 0;
            max-width: 500px;
            width: 100%;
            max-height: none;
            overflow: visible;
            position: relative;
            box-shadow: none;
            animation: slideUp 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .popup-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--color-dark);
            transition: all var(--transition-normal);
            z-index: 10;
            box-shadow: var(--shadow-sm);
        }

        .popup-close:hover {
            background: var(--color-primary);
            color: white;
            transform: rotate(90deg);
        }

        .popup-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            flex-shrink: 0;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
        }

        .popup-content {
            padding: 1.5rem;
            background: var(--color-white);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            margin-top: -10px;
            box-shadow: var(--shadow-xl);
        }

        .popup-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 1rem 1.5rem;
            background: var(--color-primary);
            color: white;
            text-decoration: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1.05rem;
            transition: all var(--transition-normal);
            border: none;
            cursor: pointer;
        }

        .popup-button:hover {
            background: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* ============================================
           HERO SECTION - CARDS LAYOUT
        ============================================ */

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            max-width: 100vw;
        }


        /* Animated Background */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            opacity: 0.05;
        }

        .hero-bg-circle {
            position: absolute;
            border-radius: 50%;
            background: var(--primary);
            animation: float-circle 20s ease-in-out infinite;
        }

        .circle-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: -50px;
            background: var(--secondary);
            animation-delay: 5s;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 30%;
            background: var(--accent);
            animation-delay: 10s;
        }

        @keyframes float-circle {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(50px, -50px) scale(1.1);
            }

            66% {
                transform: translate(-30px, 30px) scale(0.9);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: slideInLeft 2s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: var(--bg-alt);
            border: 2px solid var(--border);
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .nowrap {
            white-space: nowrap;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        /* HERO BUTTON GROUP - PROMINENT */
        .hero-buttons {
            display: flex;
            flex-wrap: nowrap;
            /* keep buttons side-by-side on wider screens */
            gap: 1rem;
            margin-bottom: 3rem;
            align-items: center;
        }

        .btn-hero {
            padding: 1.5rem 3rem;
            font-size: 1.2rem;
            font-weight: 700;
            white-space: nowrap;
            /* keep button text on a single line */
        }

        /* Ensure the span inside the button never wraps */
        .btn-hero span {
            display: inline-block;
            white-space: nowrap;
        }

        /* Make buttons slightly smaller on narrow screens so text fits on one line */
        @media (max-width: 768px) {
            .hero-buttons {
                flex-wrap: wrap;
                /* allow stacking on very narrow screens */
            }

            .btn-hero {
                padding: 0.9rem 1.25rem;
                font-size: 1rem;
            }
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), #3b82f6);
            color: white;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
            overflow: visible;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(37, 99, 235, 0.5);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

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

        /* Quick Actions - Large Interactive Cards */
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .quick-action-card {
            padding: 1.5rem;
            background: var(--bg-alt);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--text);
        }

        .quick-action-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
            text-decoration: none;
        }

        .quick-action-card:visited,
        .quick-action-card:active,
        .quick-action-card:focus {
            color: var(--text);
            text-decoration: none;
        }

        .quick-action-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .quick-action-text {
            flex: 1;
        }

        .quick-action-text h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: var(--text);
        }

        .quick-action-text p {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .quick-action-card:visited .quick-action-text h3,
        .quick-action-card:active .quick-action-text h3,
        .quick-action-card:focus .quick-action-text h3 {
            color: var(--text);
        }

        .quick-action-card:visited .quick-action-text p,
        .quick-action-card:active .quick-action-text p,
        .quick-action-card:focus .quick-action-text p {
            color: var(--text-light);
        }

        /* Hero Cards - Interactive 3D Cards */
        .hero-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            animation: slideInRight 2s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .stat-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin: 0 auto 1rem auto;
        }

        .stat-card:nth-child(2) .stat-icon {
            background: linear-gradient(135deg, var(--secondary), #34d399);
        }

        .stat-card:nth-child(3) .stat-icon {
            background: linear-gradient(135deg, var(--accent), #fbbf24);
        }

        .stat-card:nth-child(4) .stat-icon {
            background: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }

        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--text);
            line-height: 1;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
            text-align: center;
        }

        /* ============================================
           SERVICES SECTION - INTERACTIVE CARDS
        ============================================ */

        .services {
            padding: 100px 0;
            background: var(--bg-alt);
            overflow-x: hidden;
            max-width: 100vw;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.5rem, 4vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1rem;
            white-space: nowrap;
        }

        .section-description {
            font-size: 1.25rem;
            color: var(--text-light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            justify-items: center;
        }

        /* İlk 6 kart tam genişlikte */
        .service-card:nth-child(-n+6) {
            width: 100%;
        }

        /* 7. kart ortada tek başına (3+3+1 düzeni) - Desktop */
        .services-grid>a:nth-child(7) {
            grid-column: 2 / 3;
            grid-row: 3;
        }

        .services-grid>a:nth-child(7) .service-card {
            transform: translateX(0);
        }

        .services-grid>a:nth-child(7):hover .service-card {
            transform: translateY(-10px);
        }

        .service-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: var(--primary);
            opacity: 0.05;
            border-radius: 50%;
            transform: translate(50%, -50%);
            transition: var(--transition);
        }

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

        .service-card:hover::after {
            transform: translate(50%, -50%) scale(1.5);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .service-description {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* ============================================
           CTA SECTION WITH LOGIN BUTTONS
        ============================================ */

        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.5rem, 4vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            white-space: nowrap;
        }

        .cta-description {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        /* PROMINENT CTA BUTTONS */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Login Card Grid */
        .login-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .login-card {
            background: white;
            color: var(--text);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: var(--transition);
            cursor: pointer;
            border: 3px solid transparent;
        }

        .login-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .login-card.student {
            border-color: var(--primary);
        }

        .login-card.teacher {
            border-color: var(--secondary);
        }

        .login-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .login-card.teacher .login-icon {
            background: linear-gradient(135deg, var(--secondary), #34d399);
        }

        .login-card h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .login-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .login-btn {
            width: 100%;
            padding: 1rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .login-card.student .login-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
        }

        .login-card.teacher .login-btn {
            background: linear-gradient(135deg, var(--secondary), #34d399);
            color: white;
        }

        /* ============================================
           ANLAŞMALI KURUMLAR SECTION
        ============================================ */

        .partners {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .partner-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .partner-card:hover::before {
            transform: scaleX(1);
        }

        .partner-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            overflow: hidden;
        }

        .partner-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 1rem;
            background: white;
        }

        .partner-icon i {
            font-size: 2.5rem;
        }

        .partner-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
            line-height: 1.4;
            min-height: 60px;
        }

        .partner-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .discount-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent), #fbbf24);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-full);
            font-weight: 700;
            font-size: 1.25rem;
            box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
        }

        /* ============================================
           FOOTER
        ============================================ */

        .footer {
            background: var(--bg-alt);
            padding: 4rem 0 2rem;
            border-top: 2px solid var(--border);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand img {
            max-width: 180px;
            height: auto;
            object-fit: contain;
            margin-bottom: 1rem;
        }

        .footer-brand h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-description {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-column h4 {
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 2px solid var(--border);
            color: var(--text-light);
        }

        /* ============================================
           WHY CHOOSE US SECTION
        ============================================ */

        .why-us {
            padding: 100px 0;
            background: var(--bg);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .why-card {
            background: var(--bg-alt);
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .why-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 3rem;
            font-weight: 900;
            color: var(--border);
            font-family: 'Montserrat', sans-serif;
        }

        .why-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .why-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .why-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ============================================
           TESTIMONIALS SECTION
        ============================================ */

        .testimonials {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            font-size: 1.25rem;
        }

        .testimonial-text {
            font-size: 0.8rem;
            line-height: 1.45;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--border);
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .author-info h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .author-info p {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        /* ============================================
           GALLERY SECTION
        ============================================ */

        .gallery-section {
            padding: 100px 0;
            background: var(--bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .gallery-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--bg-alt), var(--border));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            transition: var(--transition);
        }

        .gallery-placeholder i {
            font-size: 3rem;
            color: var(--text-light);
        }

        .gallery-placeholder p {
            font-weight: 600;
            color: var(--text);
        }

        .gallery-item:hover .gallery-placeholder {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
        }

        .gallery-item:hover .gallery-placeholder i,
        .gallery-item:hover .gallery-placeholder p {
            color: white;
        }

        /* ============================================
           FAQ SECTION
        ============================================ */

        .faq-section {
            padding: 100px 0;
            background: var(--bg-alt);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 1rem;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--primary);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            user-select: none;
        }

        .faq-question h3 {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0;
        }

        .faq-question i {
            color: var(--primary);
            transition: transform 0.3s ease;
            font-size: 1.25rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 2rem 1.5rem;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.8;
            margin: 0;
        }

        /* ============================================
           WHATSAPP BUTTON
        ============================================ */

        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: var(--transition);
            animation: pulse 2s infinite;
        }

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

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0.1);
            }
        }

        /* ============================================
           RESPONSIVE
        ============================================ */

        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .nav-links .mobile-auth {
                display: flex !important;
            }

            .desktop-auth {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-links.active {
                display: flex;
                position: fixed;
                top: 0 !important;
                left: 0 !important;
                right: 0 !important;
                bottom: 0 !important;
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                z-index: 1001;
                animation: slideInMenu 0.3s ease;
                padding: 2rem;
                margin: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                overflow-y: auto;
                background: rgba(255, 255, 255, 0.98);
            }

            @keyframes slideInMenu {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .nav-links.active a {
                font-size: 1.5rem;
                font-weight: 700;
                padding: 0.75rem 1.5rem;
                border-radius: var(--radius-full);
                transition: var(--transition);
                color: var(--text);
                text-align: center;
                width: auto;
                text-decoration: none;
            }

            .nav-links.active a::after {
                display: none;
            }

            .nav-links.active a:hover,
            .nav-links.active a.active {
                background: var(--primary);
                color: white;
                transform: scale(1.05);
                text-decoration: none;
            }

            .nav-links.active a:hover::after,
            .nav-links.active a.active::after {
                display: none;
            }

            .nav-links.active .auth-buttons {
                flex-direction: column;
                width: 85%;
                max-width: 320px;
                gap: 1rem;
            }

            .nav-links.active .auth-buttons .btn {
                width: 100%;
                justify-content: center;
                white-space: nowrap;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                display: flex;
                align-items: center;
                gap: 0.75rem;
            }

            .nav-links.active .auth-buttons .btn span {
                display: inline;
                overflow: visible;
                text-overflow: clip;
            }

            .nav-links.active .auth-buttons .btn i {
                flex-shrink: 0;
            }

            .nav-links.active .nav-dropdown {
                width: 100%;
                text-align: center;
            }

            .nav-links.active .nav-dropdown-toggle {
                justify-content: center;
                width: 100%;
            }

            .nav-links.active .nav-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                min-width: auto;
                width: 100%;
                box-shadow: none;
                border: none;
                background: transparent;
                padding: 0;
                margin-top: 0.5rem;
            }

            .nav-links.active .nav-dropdown-menu a {
                background: var(--bg-alt);
                margin: 0.4rem auto;
                width: fit-content;
                min-width: 180px;
                font-size: 1.3rem;
                font-weight: 700;
                padding: 0.75rem 1.5rem;
                border-radius: var(--radius-full);
            }

            .auth-buttons {
                gap: 0.5rem;
            }

            .auth-buttons .btn {
                padding: 0.75rem 1.25rem;
                font-size: 0.85rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .logo i {
                font-size: 1.75rem;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .stat-card {
                padding: 1.5rem;
            }

            .stat-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.875rem;
            }

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            /* 7. kartı ortala (3+3+1 düzeni için) */
            .services-grid>a:nth-child(7) {
                grid-column: 2 / 3;
            }

            .login-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .partners-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Popup Mobile */
            .popup-modal {
                max-width: 95%;
                max-height: 85vh;
            }

            .popup-image {
                max-height: 350px;
            }
        }

        @media (max-width: 768px) {
            * {
                box-sizing: border-box;
            }

            body {
                overflow-x: hidden;
                max-width: 100vw;
            }

            .container {
                padding: 0 1rem;
                max-width: 100%;
                overflow-x: hidden;
            }

            .navbar {
                padding: 0.75rem 0;
            }

            .nav-container {
                gap: 1rem;
            }

            .logo {
                font-size: 1.25rem;
            }

            .logo img {
                height: 35px;
            }

            .logo i {
                font-size: 1.5rem;
            }

            .mobile-toggle {
                right: 0.5rem;
                top: 0.5rem;
                padding: 0.4rem;
                display: flex !important;
            }

            .mobile-toggle span {
                width: 20px;
            }

            .auth-buttons .btn span {
                display: none;
            }

            .auth-buttons .btn {
                padding: 0.75rem;
                width: 44px;
                height: 44px;
                justify-content: center;
            }

            .auth-buttons .btn i {
                margin: 0;
            }

            .hero {
                padding: 100px 0 60px;
                min-height: auto;
            }

            .hero-badge {
                font-size: 0.8rem;
                padding: 0.625rem 1.125rem;
                margin-bottom: 1.25rem;
            }

            .hero-title {
                font-size: clamp(2rem, 8vw, 2.75rem);
                margin-bottom: 1.25rem;
                line-height: 1.2;
            }

            .hero-description {
                font-size: 1.05rem;
                margin-bottom: 2rem;
                line-height: 1.7;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.875rem;
                margin-bottom: 2rem;
            }

            .btn-hero {
                width: 100%;
                justify-content: center;
                padding: 1.25rem 2rem;
                font-size: 1.05rem;
            }

            .quick-actions {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .quick-action-card {
                padding: 1rem;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
            }

            .quick-action-icon {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .quick-action-text {
                text-align: center;
            }

            .quick-action-text h3 {
                font-size: 0.9rem;
            }

            .quick-action-text p {
                font-size: 0.8rem;
            }

            .hero-cards {
                grid-template-columns: 1fr;
            }

            .services {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 2rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .services-grid>a:nth-child(7) {
                grid-column: 1;
            }

            .service-card {
                padding: 1.5rem;
                text-align: center;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
                margin-left: auto;
                margin-right: auto;
            }

            .service-title {
                font-size: 1.25rem;
            }

            .cta {
                padding: 60px 0;
            }

            .cta-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 2rem;
            }

            .btn-white,
            .btn-outline {
                width: 100%;
                justify-content: center;
            }

            .login-card {
                padding: 2rem;
            }

            .login-icon {
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .login-card h3 {
                font-size: 1.5rem;
            }

            .login-card p {
                font-size: 0.9rem;
            }

            .footer {
                padding: 3rem 0 1.5rem;
            }

            .footer-grid {
                gap: 2rem;
                margin-bottom: 2rem;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                font-size: 1.75rem;
                bottom: 1.5rem;
                right: 1.5rem;
            }

            .why-us,
            .testimonials,
            .gallery-section,
            .faq-section {
                padding: 60px 0;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .why-card {
                padding: 2rem;
            }

            .why-number {
                font-size: 2.5rem;
                top: 1rem;
                right: 1rem;
            }

            .why-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }

            .why-card h3 {
                font-size: 1.25rem;
            }

            .testimonial-card {
                padding: 2rem;
            }

            .testimonial-text {
                font-size: 0.95rem;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .faq-question {
                padding: 1.25rem 1.5rem;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1.5rem 1.25rem;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 1rem;
            }

            .navbar {
                padding: 0.625rem 0;
            }

            .logo {
                font-size: 1.1rem;
            }

            .logo i {
                font-size: 1.3rem;
            }

            .auth-buttons {
                gap: 0.375rem;
            }

            .auth-buttons .btn {
                width: 40px;
                height: 40px;
                padding: 0.625rem;
            }

            .mobile-toggle {
                padding: 0.25rem;
            }

            .mobile-toggle span {
                width: 24px;
                height: 2.5px;
            }

            .hero {
                padding: 90px 0 50px;
            }

            .hero-badge {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
                margin-bottom: 1.25rem;
            }

            .hero-title {
                font-size: clamp(1.75rem, 9vw, 2.25rem);
                margin-bottom: 1rem;
                line-height: 1.2;
            }

            .hero-description {
                font-size: 0.95rem;
                margin-bottom: 1.75rem;
                line-height: 1.7;
            }

            .hero-buttons {
                gap: 0.75rem;
                margin-bottom: 1.75rem;
            }

            .btn-hero {
                padding: 1.1rem 1.75rem;
                font-size: 1rem;
            }

            .quick-actions {
                gap: 0.625rem;
            }

            .quick-action-card {
                padding: 0.875rem;
                gap: 0.75rem;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
            }

            .quick-action-icon {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .quick-action-text {
                text-align: center;
            }

            .quick-action-text h3 {
                font-size: 0.85rem;
            }

            .quick-action-text p {
                font-size: 0.75rem;
            }

            .hero-cards {
                gap: 0.75rem;
            }

            .stat-card {
                padding: 1.25rem;
            }

            .stat-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
                margin-bottom: 0.75rem;
            }

            .stat-number {
                font-size: 1.75rem;
                margin-bottom: 0.375rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .services {
                padding: 50px 0;
            }

            .section-header {
                margin-bottom: 1.5rem;
            }

            .section-badge {
                padding: 0.375rem 0.875rem;
                font-size: 0.75rem;
                margin-bottom: 0.75rem;
            }

            .section-description {
                font-size: 0.9rem;
            }

            .services-grid {
                gap: 1rem;
            }

            /* Mobilde de 7. kartı ortala */
            .services-grid>a:nth-child(7) {
                grid-column: 1 / -1;
                display: flex;
                justify-content: center;
            }

            .services-grid>a:nth-child(7) .service-card {
                max-width: 400px;
                width: 100%;
            }

            .service-card {
                padding: 1.25rem;
                text-align: center;
            }

            .service-icon {
                width: 55px;
                height: 55px;
                font-size: 1.75rem;
                margin-bottom: 1rem;
                margin-left: auto;
                margin-right: auto;
            }

            .service-title {
                font-size: 1.1rem;
                margin-bottom: 0.75rem;
            }

            .service-description {
                font-size: 0.875rem;
                margin-bottom: 1rem;
                line-height: 1.6;
            }

            .service-link {
                font-size: 0.875rem;
                justify-content: center;
            }

            .cta {
                padding: 50px 0;
            }

            .cta-description {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
                line-height: 1.6;
            }

            .cta-buttons {
                gap: 0.75rem;
                margin-bottom: 1.5rem;
            }

            .btn-white,
            .btn-outline {
                padding: 0.875rem 1.25rem;
                font-size: 0.9rem;
            }

            .login-grid {
                gap: 1rem;
            }

            .login-card {
                padding: 1.5rem;
            }

            .login-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
                margin-bottom: 0.875rem;
            }

            .login-card h3 {
                font-size: 1.25rem;
                margin-bottom: 0.375rem;
            }

            .login-card p {
                font-size: 0.85rem;
                margin-bottom: 1rem;
            }

            .login-btn {
                padding: 0.875rem;
                font-size: 0.9rem;
            }

            .footer {
                padding: 2.5rem 0 1.25rem;
            }

            .footer-grid {
                gap: 1.5rem;
                margin-bottom: 1.5rem;
            }

            .footer-brand img {
                max-width: 140px;
            }

            .footer-brand h3 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }

            .footer-description {
                font-size: 0.875rem;
                margin-bottom: 1rem;
            }

            .social-links {
                gap: 0.5rem;
            }

            .social-link {
                width: 44px;
                height: 44px;
                font-size: 0.9rem;
            }

            .footer-column h4 {
                font-size: 0.95rem;
                margin-bottom: 0.75rem;
            }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                font-size: 0.875rem;
            }

            .footer-bottom {
                padding-top: 1.5rem;
                font-size: 0.8rem;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                font-size: 1.5rem;
                bottom: 1rem;
                right: 1rem;
            }

            .why-us,
            .testimonials,
            .gallery-section,
            .faq-section {
                padding: 50px 0;
            }

            .why-card {
                padding: 1.5rem;
            }

            .why-number {
                font-size: 2rem;
                top: 0.75rem;
                right: 0.75rem;
            }

            .why-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 0.875rem;
            }

            .why-card h3 {
                font-size: 1.1rem;
                margin-bottom: 0.75rem;
            }

            .why-card p {
                font-size: 0.875rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .stars {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .testimonial-text {
                font-size: 0.875rem;
                margin-bottom: 1.5rem;
            }

            .author-avatar {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }

            .author-info h4 {
                font-size: 0.9rem;
            }

            .author-info p {
                font-size: 0.8rem;
            }

            .faq-question {
                padding: 1rem 1.25rem;
            }

            .faq-question h3 {
                font-size: 0.95rem;
            }

            .faq-question i {
                font-size: 1rem;
            }

            .faq-item.active .faq-answer {
                padding: 0 1.25rem 1rem;
            }

            .faq-answer p {
                font-size: 0.875rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1.25rem;
            }

            .hero {
                padding: 85px 0 45px;
            }

            .hero-badge {
                padding: 0.5rem 0.875rem;
                font-size: 0.7rem;
                margin-bottom: 1rem;
            }

            .hero-title {
                font-size: 1.65rem;
                line-height: 1.25;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 0.9rem;
                line-height: 1.65;
                margin-bottom: 1.5rem;
            }

            .btn-hero {
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
            }

            .stat-card {
                padding: 1rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .service-card {
                padding: 1rem;
                text-align: center;
            }

            .service-icon {
                margin-left: auto;
                margin-right: auto;
            }

            .login-card {
                padding: 1.25rem;
            }

            .footer-brand img {
                max-width: 120px;
            }

            .why-us,
            .testimonials,
            .gallery-section,
            .faq-section {
                padding: 45px 0;
            }

            .why-card {
                padding: 1.25rem;
            }

            .why-number {
                font-size: 1.75rem;
            }

            .why-icon {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }

            .why-card h3 {
                font-size: 1rem;
            }

            .testimonial-card {
                padding: 1.25rem;
            }

            .stars {
                font-size: 0.9rem;
            }

            .testimonial-text {
                font-size: 0.8rem;
            }
        }
