        :root {
            --primary-color: #6c5ce7;
            --secondary-color: #8e44ad;
            --accent-color: #e84393;
            --accent-secondary: #00cec9;
            --light-color: #f8f9fa;
            --dark-color: #2d3436;
            --success-color: #00b894;
            --warning-color: #ff7675;
            --info-color: #0984e3;
            --border-radius: 10px;
            --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

      

        .container {
            width: 100%;
            max-width: auto;
            margin: 0 auto;
            padding: 0 20px;
        }

        .inner-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            z-index: -1;
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
        }

        .btn-secondary::before {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            color: #6c757d;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-padding {
            padding: 100px 0;
        }

        .text-center {
            text-align: center;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .flex {
            display: flex;
        }

        .flex-wrap {
            flex-wrap: wrap;
        }

        .justify-between {
            justify-content: space-between;
        }

        .justify-center {
            justify-content: center;
        }

        .align-center {
            align-items: center;
        }

        .grid {
            display: grid;
            gap: 30px;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        /* Header Styles */
        .header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
        }

        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(232, 67, 147, 0.9)), url('https://images.pexels.com/photos/3184339/pexels-photo-3184339.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
            padding: 180px 0 100px;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, #f8f9fa, transparent);
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Contact Info Section */
        .contact-info-section {
            background: linear-gradient(135deg, #f6f9fc, #eef2f7);
            position: relative;
            overflow: hidden;
        }

        .contact-info-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0) 70%);
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .contact-info-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-info-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(232, 67, 147, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .contact-info-card:hover .contact-info-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            transform: rotateY(180deg);
        }

        .contact-info-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .contact-info-text {
            color: #6c757d;
            margin-bottom: 20px;
        }

        .contact-info-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-info-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .contact-info-link:hover {
            color: var(--accent-color);
        }

        .contact-info-link:hover i {
            transform: translateX(5px);
        }

        /* Contact Form Section */
        .contact-form-section {
            background: linear-gradient(135deg, #fff, #f8f9fa);
            position: relative;
            overflow: hidden;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 67, 147, 0.1) 0%, rgba(232, 67, 147, 0) 70%);
        }

        .contact-form-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .contact-form-content {
            position: relative;
        }

        .contact-form-heading {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .contact-form-description {
            margin-bottom: 30px;
            color: #6c757d;
        }

        .contact-form-points {
            list-style: none;
            margin-bottom: 30px;
        }

        .contact-form-points li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-form-points li i {
            color: var(--success-color);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .contact-form {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 40px;
            position: relative;
        }

        .form-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--secondary-color);
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: var(--border-radius);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            transition: left 0.3s ease;
            z-index: -1;
        }

        .submit-btn:hover::before {
            left: 0;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Office Locations Section */
        .locations-section {
            background: linear-gradient(135deg, #f1f3f9, #e6ecf5);
            position: relative;
            overflow: hidden;
        }

        .locations-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 206, 201, 0.1) 0%, rgba(0, 206, 201, 0) 70%);
            border-radius: 50%;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .location-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .location-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .location-map {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .location-content {
            padding: 25px;
        }

        .location-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .location-address {
            color: #6c757d;
            margin-bottom: 15px;
        }

        .location-contact {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .location-contact-item {
            display: flex;
            align-items: center;
            color: #6c757d;
        }

        .location-contact-item i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1.1rem;
        }

        .location-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .location-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .location-link:hover {
            color: var(--accent-color);
        }

        .location-link:hover i {
            transform: translateX(5px);
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #fff, #f8f9fa);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0) 70%);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            background-color: white;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 20px;
            background-color: white;
            color: var(--dark-color);
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .faq-question:hover::before,
        .faq-question.active::before {
            opacity: 1;
        }

        .faq-question:hover {
            padding-left: 25px;
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.active {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        .faq-answer-content {
            color: #6c757d;
        }

        /* Support Options Section */
        .support-section {
            background: linear-gradient(135deg, #f1f3f9, #e6ecf5);
            position: relative;
            overflow: hidden;
        }

        .support-section::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232, 67, 147, 0.1) 0%, rgba(232, 67, 147, 0) 70%);
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .support-card {
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--accent-secondary), var(--success-color));
        }

        .support-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .support-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(0, 206, 201, 0.1), rgba(0, 184, 148, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--accent-secondary);
            transition: var(--transition);
        }

        .support-card:hover .support-icon {
            background: linear-gradient(135deg, var(--accent-secondary), var(--success-color));
            color: white;
            transform: rotateY(180deg);
        }

        .support-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .support-description {
            color: #6c757d;
            margin-bottom: 20px;
        }

        .support-link {
            display: inline-flex;
            align-items: center;
            color: var(--accent-secondary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .support-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .support-link:hover {
            color: var(--success-color);
        }

        .support-link:hover i {
            transform: translateX(5px);
        }

        /* Feedback Section */
        .feedback-section {
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(232, 67, 147, 0.9)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .feedback-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1557683316-973673baf926?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .feedback-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .feedback-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .feedback-heading {
            font-size: 2rem;
            margin-bottom: 20px;
            color: white;
        }

        .feedback-description {
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .feedback-points {
            list-style: none;
            margin-bottom: 30px;
        }

        .feedback-points li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .feedback-points li i {
            color: var(--accent-secondary);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .feedback-form {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
        }

        /* Social Media Section */
        .social-section {
            background: linear-gradient(135deg, #fff, #f8f9fa);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .social-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, rgba(108, 92, 231, 0) 70%);
        }

        .social-heading {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .social-description {
            margin-bottom: 50px;
            color: #6c757d;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-links-large {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .social-link-large {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-icon-large {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(232, 67, 147, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            font-size: 2rem;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .social-link-large:hover .social-icon-large {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            transform: translateY(-10px);
        }

        .social-name {
            color: var(--dark-color);
            font-weight: 600;
            transition: var(--transition);
        }

        .social-link-large:hover .social-name {
            color: var(--primary-color);
        }

        .social-handle {
            color: #6c757d;
            font-size: 0.9rem;
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, #e6ecf5, #f1f3f9);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(232, 67, 147, 0.1) 0%, rgba(232, 67, 147, 0) 70%);
            border-radius: 50%;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .newsletter-description {
            color: #6c757d;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            font-size: 1rem;
        }

        .newsletter-input:focus {
            outline: none;
        }

        .newsletter-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-btn:hover {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        }

        /* Map Section */
        .map-section {
            height: 400px;
            position: relative;
        }

        .map-container {
            width: 100%;
            height: 100%;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color), var(--accent-secondary), var(--success-color));
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-about {
            margin-bottom: 25px;
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--accent-color);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-newsletter p {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .footer-form {
            display: flex;
            overflow: hidden;
            border-radius: var(--border-radius);
        }

        .footer-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            font-size: 0.95rem;
        }

        .footer-input:focus {
            outline: none;
        }

        .footer-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            padding: 0 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .footer-btn:hover {
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        /* Success Message */
        .success-message {
            display: none;
            background-color: rgba(0, 184, 148, 0.1);
            color: var(--success-color);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-top: 20px;
            text-align: center;
        }

        .success-message.active {
            display: block;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
        }

        @media (max-width: 992px) {
            .section-padding {
                padding: 70px 0;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .contact-form-container {
                grid-template-columns: 1fr;
            }

            .grid-3, .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }

            .nav-links li {
                margin: 10px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .grid-3, .grid-2, .grid-4 {
                grid-template-columns: 1fr;
            }

            .feedback-container {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-input {
                width: 100%;
                border-radius: var(--border-radius) var(--border-radius) 0 0;
            }

            .newsletter-btn {
                width: 100%;
                padding: 15px;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
        }

        @media (max-width: 576px) {
            .section-padding {
                padding: 50px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .social-links-large {
                gap: 15px;
            }

            .social-icon-large {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .footer-form {
                flex-direction: column;
            }

            .footer-input {
                width: 100%;
                border-radius: var(--border-radius) var(--border-radius) 0 0;
            }

            .footer-btn {
                width: 100%;
                padding: 12px;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
        }