/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 8rem; /* pt-32 */
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        /* height: 70vh; md:h-[70vh] */
        padding-top: 8rem; /* Keep consistent or adjust if header height changes */
    }
}

.hero-background {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--slate-950), var(--daikin-blue)); /* from-slate-950/80 to-daikin-blue/60 */
    opacity: var(--opacity-85); /* Applying opacity to overlay */
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
    align-items: center;
    padding-top: 1.5rem; /* py-6 */
    padding-bottom: 1.5rem; /* py-6 */
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 3rem; /* md:py-12 */
        padding-bottom: 3rem; /* md:py-12 */
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem; /* lg:grid-cols-2 lg:gap-12 */
    }
}

.hero-text {
    color: var(--white);
    padding: 1rem; /* px-4 */
}

@media (min-width: 768px) {
    .hero-text {
        padding: 0;
    }
    /* md:px-0 */
}

.hero-title {
    font-size: 1.875rem; /* text-3xl */
    line-height: 1.25; /* leading-tight */
    margin-bottom: 1rem; /* mb-4 */
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    /* md:text-4xl */
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    /* lg:text-5xl */
}

.hero-description {
    font-size: 1.125rem; /* text-lg */
    line-height: 1.625; /* leading-relaxed */
    color: rgba(255, 255, 255, 0.9); /* text-white/90 */
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
    /* md:text-xl */
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.5rem;
    }
    /* lg:text-2xl */
}
/* Info Card General Styles (Used for Headquarters, Credit, Technical Support, Showroom, Subscription Form) */
.info-card-in {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px 0 rgba(0,0,0,0.06); /* shadow-sm on form, others no shadow initially */
    padding: 1.5rem; /* p-6 */
    transition: box-shadow 0.15s ease-in-out;
    width: 100%;
}

    .info-card-in.headquarters-card {
        background-color: rgba(0, 0, 0, 0.3); /* bg-black/30 */
        backdrop-filter: blur(8px); /* backdrop-blur-md */
        border-color: rgba(255, 255, 255, 0.2); /* border-white/20 */
        border-radius: 1rem; /* rounded-2xl */
        padding: 1.5rem; /* p-6 */
        box-shadow: var(--shadow-2xl);
        max-width: 28rem; /* max-w-md */
        color: var(--white);
        text-align: center;
    }

@media (min-width: 768px) {
    .info-card-in.headquarters-card {
        padding: 2rem;
    }
    /* md:p-8 */
}

.info-card-in:hover {
    box-shadow: var(--shadow-lg);
}

.info-card-title {
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 1rem; /* mb-4 */
    font-weight: 600;
}

@media (min-width: 768px) {
    .info-card-title {
        font-size: 1.25rem;
        margin-bottom: .5rem;
    }
    /* md:text-xl md:mb-6 */
}

.info-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem; /* space-y-3 */
}

@media (min-width: 768px) {
    .info-card-body {
        gap: 1rem;
    }
    /* md:space-y-4 */
}

.card-text-center {
    text-align: center;
    margin-bottom: 0; /* mb-3 */
}

.card-subtitle {
    font-size: 1rem; /* text-base */
    font-weight: 500;
}

@media (min-width: 768px) {
    .card-subtitle {
        font-size: 1.125rem;
    }
    /* md:text-lg */
}

.info-item {
    display: flex;
    align-items: flex-start; /* items-start */
    font-size: 0.875rem; /* text-sm */
    color: var(--white); /* for headquarters card */
    margin-bottom: 0.75rem;
}

.info-address {
    text-align: left;
    max-width: 200px;
}

.info-item.align-center {
    align-items: center;
}

.info-icon {
    width: 1.25rem; /* h-5 w-5 */
    height: 1.25rem;
    margin-right: 0.75rem; /* mr-3 */
    margin-top: 0rem; /* mt-1 */
    flex-shrink: 0;
}

.info-item.align-center .info-icon {
    margin-top: 0;
}

.info-address p {
    font-weight: 400;
}

.info-phone-link {
    font-size: 1rem; /* text-base */
    font-weight: 500;
}

@media (min-width: 768px) {
    .info-phone-link {
        font-size: 1.125rem;
    }
    /* md:text-lg */
}

.headquarters-card-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 2rem;
    margin-bottom: 2rem;
    /* Responsive: stack on small screens */
}

.info-card-in.headquarters-card {
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.08);
    padding: 2rem 2.5rem;
    min-width: 320px;
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 2;
    transition: box-shadow 0.2s;
}

    .info-card-in.headquarters-card:hover {
        box-shadow: 0 12px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    }

.info-card-title.text-light-blue {
    color: #0097d3;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.info-card-body {
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-address p {
    margin: 0;
    color: #222;
    font-size: 1rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0097d3;
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,151,211,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

    .primary-button:hover {
        background: #0072ce;
        box-shadow: 0 4px 16px rgba(0,151,211,0.16);
    }

@media (max-width: 900px) {
    .headquarters-card-wrapper {
        justify-content: center;
    }

    .info-card-in.headquarters-card {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 600px) {
    .headquarters-card-wrapper {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .info-card-in.headquarters-card {
        border-radius: 0.5rem;
        padding: 1rem 0.5rem;
    }
}
