/*
Theme Name: Swapnil Group Theme
Author: Tanvir Rahman
Version: 1.0
Description: Custom WordPress Theme for Swapnil Group
*/

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

        :root {
            --primary: #2EBB6F;
            --primary-dark: #1F8B4F;
            --accent: #FF9E64;
            --accent-light: #D4E157;
            --gray: #888888;
            --charcoal: #2C3E50;
            --light-bg: #F8FFFE;
            --border: #e0e0e0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--charcoal);
            line-height: 1.6;
            background: white;
            overflow-x: hidden;
        }

        /* Hero Slider */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(31, 139, 79, 0.45);
            z-index: 1;
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 100;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
            z-index: 50;
        }

        .slider-nav:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .prev {
            left: 30px;
        }

        .next {
            right: 30px;
        }

        /* Header Floating */
        header {
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            z-index: 500;
            margin: 0 auto;
            width: fit-content;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 16px 40px;
            border-radius: 50px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            margin-right: 50px;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            margin-right: 40px;
        }

        nav a {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 13px;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

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

        nav a:hover::after {
            width: 100%;
        }

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

        .contact-btn {
            padding: 10px 24px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(46, 187, 111, 0.3);
        }

        /* Hero Content */
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            max-width: 900px;
            width: 100%;
            padding: 0 40px;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, -40%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        .hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            opacity: 0.95;
            margin-bottom: 40px;
        }

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

        .btn {
            padding: 14px 36px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

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

        .btn-primary:hover {
            background: #E8884D;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 158, 100, 0.3);
        }

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

        .btn-secondary:hover {
            background: transparent;
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
        }

        /* Featured Businesses Section */
        .featured-brands {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 40px;
        }

        .section-title {
            font-family: 'Poppins', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-top: 80px;
        }

        .brand-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            display: grid;
            grid-template-columns: 200px 1fr;
            min-height: 280px;
        }

        .brand-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(46, 187, 111, 0.2);
            border-color: var(--primary);
        }

        .brand-logo-section {
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            border-right: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .brand-card:hover .brand-logo-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .brand-logo {
            width: 140px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 12px;
            padding: 15px;
            transition: all 0.3s ease;
        }

        .brand-card:hover .brand-logo {
            background: rgba(255, 255, 255, 0.95);
        }

        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .brand-logo.empty {
            background: var(--primary);
            color: white;
            font-size: 48px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }

        .brand-info {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .brand-card p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .brand-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
            align-self: flex-start;
        }

        .brand-link:hover {
            gap: 12px;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
            padding: 120px 40px;
            margin: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .why-choose-us::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(46, 187, 111, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .why-choose-us::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 158, 100, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .why-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .why-choose-us .section-title {
            margin-bottom: 80px;
        }

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

        .feature {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid transparent;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 16px 16px 0 0;
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

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

        .feature:hover {
            box-shadow: 0 20px 50px rgba(46, 187, 111, 0.15);
            transform: translateY(-16px);
            border-color: var(--light-bg);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .feature:hover .feature-icon {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 10px 30px rgba(46, 187, 111, 0.3);
        }

        .feature h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 12px;
        }

        .feature p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

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

            .map-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        @media (max-width: 768px) {
            .map-section {
                padding: 80px 20px;
            }

            .news-section {
                padding: 80px 20px;
            }

            .map-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .location-list {
                grid-template-columns: 1fr;
            }

            .news-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .map-info h3 {
                font-size: 24px;
            }

            .why-choose-us {
                padding: 80px 20px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                margin-top: 60px;
            }

            .feature {
                padding: 30px 20px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .feature h4 {
                font-size: 16px;
            }

            .feature p {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }

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

            .news-card {
                flex-direction: column;
            }

            .news-date {
                min-width: auto;
                padding: 16px;
                flex-direction: row;
                gap: 12px;
            }

            .news-date .day {
                font-size: 20px;
            }

            .news-content {
                padding: 20px;
            }

            .news-card h3 {
                font-size: 16px;
            }

            .feature {
                padding: 25px 20px;
            }

            .location-item {
                padding: 15px;
            }

            .map-info h3 {
                font-size: 20px;
            }
        }

        /* Leadership Messages Section */
        .leadership-messages {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 40px;
        }

        .leadership-messages .section-title {
            margin-bottom: 80px;
        }

        .messages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .message-card {
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 30px;
            animation: fadeInUp 0.8s ease-out;
        }

        .leader-photo {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
            border-radius: 12px;
            overflow: hidden;
            object-fit: cover;
        }

        .message-content h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .message-content .title {
            font-size: 13px;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .message-text {
            font-size: 14px;
            color: var(--charcoal);
            line-height: 1.8;
        }

        .message-text p {
            margin-bottom: 12px;
        }

        .message-text p:last-child {
            margin-bottom: 0;
        }

        /* Map Section */
        .map-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 120px 40px;
            margin: 100px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .map-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .map-section .section-title {
            color: white;
            margin-bottom: 80px;
        }

        .map-section .section-title::after {
            background: rgba(255, 255, 255, 0.6);
        }

        .map-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .bangladesh-map {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 12px;
            filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.25));
        }

        .map-wrapper {
            position: relative;
            width: 100%;
            max-width: 400px;
        }

        .map-regions {
            cursor: pointer;
        }

        .location-pin-marker {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% {
                r: 8px;
                opacity: 0.8;
            }
            50% {
                r: 12px;
                opacity: 0.4;
            }
        }

        .map-info h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .map-info p {
            font-size: 16px;
            opacity: 0.95;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .location-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .location-item {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .location-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }

        .location-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 6px;
        }

        .location-indicator.dhaka {
            background: #FF9E64;
            box-shadow: 0 0 12px rgba(255, 158, 100, 0.6);
        }

        .location-indicator.uttara {
            background: #FF9E64;
            opacity: 0.8;
        }

        .location-indicator.chittagong {
            background: #FF9E64;
            opacity: 0.8;
        }

        .location-indicator.khulna {
            background: #FF9E64;
            opacity: 0.8;
        }

        .location-item h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .location-item p {
            font-size: 13px;
            opacity: 0.85;
            margin: 0;
        }

        /* News Section */
        .news-section {
            background: var(--light-bg);
            padding: 120px 40px;
            margin: 100px 0;
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .news-section .section-title {
            margin-bottom: 80px;
        }

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

        .news-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--border);
            display: flex;
        }

        .news-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(46, 187, 111, 0.15);
            border-color: var(--primary);
        }

        .news-date {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 80px;
            flex-shrink: 0;
        }

        .news-date .day {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
        }

        .news-date .month {
            font-size: 12px;
            font-weight: 600;
            opacity: 0.9;
        }

        .news-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .news-category {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 16px;
            width: fit-content;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-card p {
            font-size: 14px;
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
            flex-grow: 1;
        }

        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.3s ease;
        }

        .read-more:hover {
            gap: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%),
                        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&h=600&fit=crop') center/cover;
            background-blend-mode: overlay;
            color: white;
            padding: 100px 40px;
            text-align: center;
            margin-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            opacity: 0.95;
            margin-bottom: 40px;
        }

        /* Footer */
        footer {
            background: var(--charcoal);
            color: white;
            padding: 80px 40px 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(46, 187, 111, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255, 158, 100, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary);
        }

        /* Logo Section */
        .footer-logo-section {
            display: flex;
            flex-direction: column;
        }

        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
            width: fit-content;
        }

        .footer-logo img {
            height: 100%;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-logo-section p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Contact Section */
        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(46, 187, 111, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            color: var(--primary);
        }

        .contact-info h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 6px;
            color: white;
        }

        .contact-info p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            line-height: 1.5;
        }

        .contact-info a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* Quick Links Section */
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
        }

        .footer-links a::before {
            content: '→';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .footer-links a:hover::before {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(46, 187, 111, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

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

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
        }

        @media (max-width: 768px) {
            footer {
                padding: 60px 20px 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .footer-bottom {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-socials {
                justify-content: flex-start;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .brands-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .brand-card {
                grid-template-columns: 180px 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 12px 20px;
                flex-wrap: wrap;
                gap: 20px;
            }

            .logo {
                margin-right: 0;
            }

            nav ul {
                gap: 15px;
                margin-right: 0;
                display: none;
            }

            .contact-btn {
                padding: 8px 16px;
                font-size: 12px;
            }

            .hero {
                height: 80vh;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .prev {
                left: 15px;
            }

            .next {
                right: 15px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .featured-brands {
                padding: 0 20px;
                margin: 60px auto;
            }

            .brand-card {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .brand-logo-section {
                border-right: none;
                border-bottom: 1px solid var(--border);
                padding: 30px 20px;
            }

            .why-choose-us {
                padding: 60px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .messages-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .message-card {
                grid-template-columns: 1fr;
            }

            .leader-photo {
                width: 100%;
                height: 200px;
            }

            .section-title {
                font-size: 28px;
            }

            .cta-section h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 12px 15px;
            }

            .brand-info {
                padding: 20px;
            }

            .brand-card h3 {
                font-size: 18px;
            }

            .feature h4 {
                font-size: 16px;
            }

            .message-card {
                gap: 20px;
            }

            .message-content h4 {
                font-size: 16px;
            }
        }