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

:root {
    --adani-primary: #1e3a8a;
    --adani-primary-dark: #1e40af;
    --adani-primary-light: #3b82f6;
    --adani-secondary: #7c3aed;
    --adani-accent: #06b6d4;
    --adani-gold: #f59e0b;
    --adani-text-dark: #1f2937;
    --adani-text-light: #6b7280;
    --adani-bg-light: #f8fafc;
    --adani-bg-white: #ffffff;
    --adani-border: #e5e7eb;
    --adani-gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #7c3aed 100%);
    --adani-gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --adani-gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 30%, #7c3aed 70%, #06b6d4 100%);
    --adani-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --adani-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --adani-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--adani-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.adani-wrapper {
    width: 100%;
    min-height: 100vh;
}

.adani-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.adani-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--adani-shadow-sm);
    z-index: 1000;
    padding: 20px 0;
}

.adani-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.adani-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--adani-primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
    background: var(--adani-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adani-logo-text-footer {
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adani-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.adani-nav-link {
    text-decoration: none;
    color: var(--adani-text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.adani-nav-link:hover {
    color: var(--adani-primary);
}

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

.adani-nav-link:hover::after,
.adani-nav-active::after {
    width: 100%;
}

.adani-nav-active {
    color: var(--adani-primary);
}

.adani-header-cta {
    padding: 12px 28px;
    font-size: 14px;
}

.adani-cta-button {
    background: var(--adani-gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adani-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--adani-shadow-md);
}

.adani-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.adani-menu-line {
    width: 24px;
    height: 2px;
    background: var(--adani-text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.adani-mobile-menu-toggle.active .adani-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.adani-mobile-menu-toggle.active .adani-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.adani-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.adani-mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.adani-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.adani-mobile-menu.active .adani-mobile-nav {
    right: 0;
}

.adani-mobile-nav-link {
    text-decoration: none;
    color: var(--adani-text-dark);
    font-weight: 500;
    font-size: 18px;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: block;
}

.adani-mobile-nav-link:hover,
.adani-mobile-nav-link.adani-nav-active {
    background: var(--adani-gradient-primary);
    color: white;
    transform: translateX(5px);
}

.adani-button {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.adani-button-primary {
    background: white;
    color: var(--adani-primary);
    box-shadow: var(--adani-shadow-md);
}

.adani-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--adani-shadow-lg);
}

.adani-mobile-cta {
    margin-top: 20px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.adani-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.adani-section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--adani-text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.adani-section-description {
    font-size: 18px;
    color: var(--adani-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.adani-contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.adani-contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--adani-gradient-hero);
    opacity: 0.95;
    z-index: -1;
}

.adani-contact-hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.adani-contact-hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.adani-contact-hero-content {
    text-align: center;
    z-index: 1;
}

.adani-contact-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.adani-contact-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.adani-contact-info {
    padding: 120px 0;
    background: white;
}

.adani-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.adani-contact-info-card {
    background: var(--adani-bg-light);
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.adani-contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--adani-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.adani-contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--adani-shadow-lg);
    background: white;
}

.adani-contact-info-card:hover::before {
    transform: scaleX(1);
}

.adani-contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--adani-primary);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 16px;
}

.adani-contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--adani-text-dark);
    margin-bottom: 16px;
}

.adani-contact-info-text {
    font-size: 16px;
    color: var(--adani-text-light);
    line-height: 1.7;
}

.adani-contact-link {
    color: var(--adani-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.adani-contact-link:hover {
    color: var(--adani-primary-dark);
    text-decoration: underline;
}

.adani-contact-form-section {
    padding: 120px 0;
    background: var(--adani-bg-light);
}

.adani-contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.adani-contact-form-text {
    padding-right: 40px;
}

.adani-contact-form-benefits {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.adani-form-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--adani-text-dark);
}

.adani-form-benefit-icon {
    color: var(--adani-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.adani-contact-form-wrapper {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--adani-shadow-md);
}

.adani-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.adani-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adani-form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--adani-text-dark);
}

.adani-form-input {
    padding: 14px 18px;
    border: 2px solid var(--adani-border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--adani-text-dark);
    transition: all 0.3s ease;
    background: white;
}

.adani-form-input:focus {
    outline: none;
    border-color: var(--adani-primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.adani-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.adani-form-submit {
    margin-top: 8px;
    width: 100%;
}

.adani-contact-map {
    padding: 120px 0;
    background: white;
}

.adani-map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--adani-shadow-lg);
    height: 500px;
}

.adani-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adani-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.adani-map-info-box {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--adani-shadow-lg);
    max-width: 400px;
}

.adani-map-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--adani-text-dark);
    margin-bottom: 12px;
}

.adani-map-info-text {
    font-size: 16px;
    color: var(--adani-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.adani-map-button {
    width: 100%;
}

.adani-contact-hours {
    padding: 120px 0;
    background: var(--adani-bg-light);
}

.adani-contact-hours-content {
    max-width: 800px;
    margin: 0 auto;
}

.adani-contact-hours-text {
    text-align: center;
}

.adani-hours-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.adani-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--adani-shadow-sm);
    transition: all 0.3s ease;
}

.adani-hours-item:hover {
    transform: translateX(5px);
    box-shadow: var(--adani-shadow-md);
}

.adani-hours-day {
    font-size: 18px;
    font-weight: 600;
    color: var(--adani-text-dark);
}

.adani-hours-time {
    font-size: 16px;
    color: var(--adani-text-light);
    font-weight: 500;
}

.adani-hours-holiday {
    opacity: 0.7;
}

.adani-hours-note {
    margin-top: 32px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--adani-primary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.adani-hours-note p {
    font-size: 15px;
    color: var(--adani-text-light);
    line-height: 1.7;
    margin: 0;
}

.adani-footer {
    background: var(--adani-text-dark);
    color: white;
    padding: 80px 0 40px;
}

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

.adani-footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.adani-footer-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.adani-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.adani-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    margin-bottom: 12px;
    display: block;
}

.adani-footer-link:hover {
    color: white;
}

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

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

@media (max-width: 1024px) {
    .adani-contact-info-grid {
        grid-template-columns: 1fr;
    }

    .adani-contact-form-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .adani-contact-form-text {
        padding-right: 0;
    }

    .adani-section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .adani-container {
        padding: 0 24px;
    }

    .adani-header-container {
        padding: 0 24px;
        position: relative;
    }

    .adani-logo-text {
        font-size: 20px;
    }

    .adani-nav {
        display: none;
    }

    .adani-header-cta {
        display: none;
    }

    .adani-mobile-menu-toggle {
        display: flex;
    }

    .adani-mobile-menu {
        display: block;
    }

    .adani-contact-hero {
        min-height: 50vh;
        padding: 120px 0 60px;
    }

    .adani-contact-hero-title {
        font-size: 36px;
    }

    .adani-contact-hero-subtitle {
        font-size: 18px;
    }

    .adani-contact-form-wrapper {
        padding: 32px 24px;
    }

    .adani-map-wrapper {
        height: 400px;
    }

    .adani-section-title {
        font-size: 32px;
    }

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

