        :root {
            --primary-bg: #0E1117;
            --secondary-bg: #151A23;
            --tertiary-bg: #1A202C;
            --primary-text: #F5F5F5;
            --secondary-text: #A0AEC0;
            --accent-color: linear-gradient(135deg, #C0C0C0, #A9A9A9);
            --highlight-color: #F4A460;
            --highlight-hover: #e69550;
            --section-padding: 100px 0;
            --card-radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-bg);
            color: var(--primary-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--highlight-color);
            border-radius: 10px;
            border: 2px solid var(--secondary-bg);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--highlight-hover);
        }
        
        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            flex-direction: column;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(244, 164, 96, 0.3);
            border-radius: 50%;
            border-top-color: var(--highlight-color);
            animation: spin 1.5s ease-in-out infinite;
            margin-bottom: 20px;
        }
        
        .loader-text {
            font-size: 1.2rem;
            color: var(--secondary-text);
            font-weight: 500;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Navbar Styles */
        .navbar {
            background-color: rgba(14, 17, 23, 0.95);
            backdrop-filter: blur(15px);
            padding: 18px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }
        
        .logo-img {
            height: 45px;
            margin-right: 12px;
            transition: var(--transition);
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(15deg);
        }
        
        .nav-link {
            color: var(--primary-text) !important;
            font-weight: 500;
            margin: 0 12px;
            transition: var(--transition);
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background: var(--highlight-color);
            transition: var(--transition);
            border-radius: 2px;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--highlight-color) !important;
        }
        
        .navbar-toggler {
            border: none;
            color: var(--primary-text);
            padding: 8px 12px;
            font-size: 1.2rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* Page Banner */
        .page-banner {
            background: linear-gradient(135deg, rgba(14, 17, 23, 0.9) 0%, rgba(26, 32, 44, 0.8) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .page-banner-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .page-title {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, #F5F5F5, #F4A460);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .page-subtitle {
            font-size: 1.4rem;
            color: var(--secondary-text);
            margin-bottom: 30px;
            font-weight: 400;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--highlight-color);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: var(--secondary-text);
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--secondary-text);
        }
        
        /* Section Titles */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: var(--highlight-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-text);
            max-width: 700px;
            margin: 30px auto 0;
            font-weight: 400;
        }
        
        /* Contact Section */
        .contact-section {
            padding: var(--section-padding);
        }
        
        .contact-card {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 50px 40px;
            height: 100%;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .contact-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.05), transparent);
            transition: all 0.8s;
            z-index: -1;
        }
        
        .contact-card:hover:before {
            left: 100%;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border-color: var(--highlight-color);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: var(--accent-color);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .contact-card:hover .contact-icon {
            transform: rotateY(180deg) scale(1.1);
            background: var(--highlight-color);
        }
        
        .contact-icon i {
            font-size: 35px;
            color: var(--primary-bg);
            transition: var(--transition);
        }
        
        .contact-card:hover .contact-icon i {
            transform: rotateY(-180deg);
        }
        
        .contact-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .contact-text {
            color: var(--secondary-text);
            font-size: 1.05rem;
            margin-bottom: 20px;
        }
        
        .contact-link {
            color: var(--highlight-color);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .contact-link:hover {
            color: var(--highlight-hover);
            gap: 12px;
        }
        
        /* Contact Form */
        .form-container {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 50px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .form-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .form-subtitle {
            color: var(--secondary-text);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            color: var(--primary-text);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.05rem;
        }
        
        .form-control, .form-select {
            background: var(--primary-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: var(--primary-text);
            padding: 15px 20px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus, .form-select:focus {
            background: var(--primary-bg);
            border-color: var(--highlight-color);
            color: var(--primary-text);
            box-shadow: 0 0 0 0.25rem rgba(244, 164, 96, 0.25);
        }
        
        .form-control::placeholder {
            color: var(--secondary-text);
        }
        
        .file-input-container {
            position: relative;
        }
        
        .file-input {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        
        .file-input-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--primary-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px 20px;
            color: var(--secondary-text);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .file-input-label:hover {
            border-color: var(--highlight-color);
        }
        
        .file-input-label i {
            color: var(--highlight-color);
        }
        
        .file-list {
            margin-top: 15px;
        }
        
        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 10px 15px;
            margin-bottom: 8px;
        }
        
        .file-name {
            color: var(--primary-text);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .file-remove {
            color: var(--secondary-text);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .file-remove:hover {
            color: #ff6b6b;
        }
        
        .submit-btn {
            background: var(--highlight-color);
            border: none;
            color: var(--primary-bg);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(244, 164, 96, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            justify-content: center;
        }
        
        .submit-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .submit-btn:hover:before {
            left: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(244, 164, 96, 0.4);
            background: var(--highlight-hover);
        }
        
        .submit-btn:disabled {
            background: var(--secondary-text);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .submit-btn:disabled:hover {
            transform: none;
        }
        
        /* Alert Messages */
        .alert {
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
            border: none;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .alert-success {
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            border-left: 4px solid #28a745;
        }
        
        .alert-danger {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border-left: 4px solid #dc3545;
        }
        
        .alert-info {
            background: rgba(23, 162, 184, 0.1);
            color: #17a2b8;
            border-left: 4px solid #17a2b8;
        }
        
        .alert i {
            font-size: 1.5rem;
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 100px;
        }
        
        .map-container {
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            height: 500px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: var(--section-padding);
            background-color: var(--secondary-bg);
        }
        
        .accordion-item {
            background: var(--primary-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .accordion-button {
            background: var(--primary-bg);
            color: var(--primary-text);
            font-weight: 600;
            padding: 25px 30px;
            font-size: 1.1rem;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-bg);
            color: var(--highlight-color);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--highlight-color);
        }
        
        .accordion-body {
            padding: 25px 30px;
            color: var(--secondary-text);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 140px 0;
            background: linear-gradient(135deg, rgba(244, 164, 96, 0.95) 0%, rgba(230, 149, 80, 0.9) 100%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .cta-container {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .cta-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            color: var(--primary-bg);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1rem;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .cta-badge i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .cta-title {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: var(--primary-bg);
            line-height: 1.1;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .cta-description {
            font-size: 1.4rem;
            margin-bottom: 45px;
            color: rgba(14, 17, 23, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
            line-height: 1.6;
        }
        
        .cta-btn {
            background: var(--primary-bg);
            border: none;
            color: var(--highlight-color);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .cta-btn:hover:before {
            left: 100%;
        }
        
        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: var(--secondary-bg);
        }
        
        /* Footer */
        .footer {
            background: var(--primary-bg);
            padding: 80px 0 0;
            position: relative;
        }
        
        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--highlight-color);
        }
        
        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 32px;
            background: var(--accent-color);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-description {
            color: var(--secondary-text);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--secondary-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-text);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--highlight-color);
            color: var(--primary-bg);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--highlight-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--secondary-text);
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .footer-links a:hover {
            color: var(--highlight-color);
            transform: translateX(8px);
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 12px;
            color: var(--highlight-color);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            margin-right: 12px;
            color: var(--highlight-color);
            margin-top: 5px;
            font-size: 1.1rem;
        }
        
        .contact-info div {
            flex: 1;
        }
        
        .contact-info strong {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-text);
        }
        
        .contact-info p {
            color: var(--secondary-text);
            margin: 0;
        }
        
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--secondary-text);
            font-size: 0.95rem;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--highlight-color);
            color: var(--primary-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
            box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--highlight-hover);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(244, 164, 96, 0.4);
        }
        
        /* Loading Spinner */
        .spinner-border {
            width: 1.5rem;
            height: 1.5rem;
        }
          /* Enhanced Alert Messages */
        .alert {
            border-radius: 12px;
            padding: 20px 25px;
            margin-bottom: 25px;
            border: none;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(0);
            opacity: 1;
        }
        
        .alert::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
        }
        
        .alert-success {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(40, 167, 69, 0.08) 100%);
            color: #28a745;
            border: 1px solid rgba(40, 167, 69, 0.2);
        }
        
        .alert-success::before {
            background: linear-gradient(to bottom, #28a745, #20c997);
        }
        
        .alert-danger {
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.15) 0%, rgba(220, 53, 69, 0.08) 100%);
            color: #dc3545;
            border: 1px solid rgba(220, 53, 69, 0.2);
        }
        
        .alert-danger::before {
            background: linear-gradient(to bottom, #dc3545, #e4606d);
        }
        
        .alert-info {
            background: linear-gradient(135deg, rgba(23, 162, 184, 0.15) 0%, rgba(23, 162, 184, 0.08) 100%);
            color: #17a2b8;
            border: 1px solid rgba(23, 162, 184, 0.2);
        }
        
        .alert-info::before {
            background: linear-gradient(to bottom, #17a2b8, #39c0d3);
        }
        
        .alert i {
            font-size: 1.8rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .alert-success i {
            background: rgba(40, 167, 69, 0.15);
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
        }
        
        .alert-danger i {
            background: rgba(220, 53, 69, 0.15);
            box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
        }
        
        .alert-info i {
            background: rgba(23, 162, 184, 0.15);
            box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.2);
        }
        
        .alert-content {
            flex: 1;
        }
        
        .alert-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
        }
        
        .alert-message {
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
        }
        
        .alert-close {
            background: transparent;
            border: none;
            color: inherit;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0.7;
            transition: var(--transition);
            padding: 5px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .alert-close:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Success Modal */
        .success-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(14, 17, 23, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .success-modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .success-modal-content {
            background: var(--secondary-bg);
            border-radius: var(--card-radius);
            padding: 50px 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transform: translateY(30px);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .success-modal.show .success-modal-content {
            transform: translateY(0);
        }
        
        .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            box-shadow: 0 15px 30px rgba(40, 167, 69, 0.3);
            position: relative;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
            }
        }
        
        .success-icon i {
            font-size: 45px;
            color: white;
        }
        
        .success-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--primary-text);
            font-family: 'Poppins', sans-serif;
        }
        
        .success-message {
            font-size: 1.2rem;
            color: var(--secondary-text);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .success-details {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .success-details p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .success-details i {
            color: var(--highlight-color);
            margin-right: 10px;
            width: 20px;
        }
        
        .success-btn {
            background: var(--highlight-color);
            border: none;
            color: var(--primary-bg);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(244, 164, 96, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .success-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }
        
        .success-btn:hover:before {
            left: 100%;
        }
        
        .success-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(244, 164, 96, 0.4);
            background: var(--highlight-hover);
        }
        
        /* Alert entrance animation */
        @keyframes slideInAlert {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert {
            animation: slideInAlert 0.5s ease forwards;
        }
        
        /* Alert exit animation */
        @keyframes slideOutAlert {
            from {
                opacity: 1;
                transform: translateY(0);
            }
            to {
                opacity: 0;
                transform: translateY(-20px);
            }
        }
        
        .alert.fade-out {
            animation: slideOutAlert 0.5s ease forwards;
        }
        /* Responsive Styles */
        @media (max-width: 1199px) {
            .page-title {
                font-size: 4rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .cta-title {
                font-size: 3.2rem;
            }
        }
        
        @media (max-width: 991px) {
            .page-title {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2.8rem;
            }
            
            .cta-description {
                font-size: 1.2rem;
            }
            
            .form-container {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 767px) {
            .page-banner {
                padding: 150px 0 100px;
            }
            
            .page-title {
                font-size: 2.8rem;
            }
            
            .page-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-description {
                font-size: 1.1rem;
            }
            
            .contact-card {
                padding: 40px 30px;
            }
            
            .form-container {
                padding: 30px 25px;
            }
        }
        
        @media (max-width: 575px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .cta-description {
                font-size: 1rem;
            }
            
            .cta-badge {
                font-size: 0.9rem;
                padding: 8px 20px;
            }
        }