@import url('variables.css');

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-ivory);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Scale (Anchored to Home Page Hero Typography Scale) */
h1, .hero-heading, .page-hero h1, .page-hero-heading, .page-hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-hero);
    color: var(--color-mehndi-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.15;
    font-weight: 700;
}

h2, .section-title, .section-heading, .page-section-heading, .home-about-heading, .home-cta-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-section-heading);
    color: var(--color-mehndi-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
    font-weight: 600;
}

h3, .section-subtitle, .service-card h3, .why-us-title, .mv-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-subheading);
    color: var(--color-mehndi-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.35;
    font-weight: 600;
}

h4, .feature-card-title, .our-work-card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-minor-heading);
    color: var(--color-mehndi-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    font-weight: 600;
}

h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-mehndi-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    font-weight: 600;
}

h6 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-mehndi-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    font-weight: 600;
}

p {
    font-size: var(--font-size-body);
    line-height: 1.65;
}

.eyebrow-badge, .badge-label, .section-eyebrow, .hero-eyebrow {
    font-size: var(--font-size-eyebrow);
    letter-spacing: 1.5px;
}

/* Remove default blue link styling */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}
a:hover {
    color: var(--color-maroon);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px; /* Wider container for premium feel */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-maroon { color: var(--color-maroon); }
.text-green { color: var(--color-mehndi-green); }

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-maroon);
    color: var(--color-white) !important;
}
.btn-primary:hover {
    background-color: var(--color-mehndi-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--color-gold) !important;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--color-maroon) !important;
    border: 2px solid var(--color-maroon);
}
.btn-outline-primary:hover {
    background-color: var(--color-maroon);
    color: var(--color-white) !important;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white) !important;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--color-gold);
    color: var(--color-mehndi-green) !important;
}
.btn-secondary:hover {
    background-color: var(--color-mehndi-green);
    color: var(--color-gold) !important;
    box-shadow: var(--shadow-md);
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-light {
    background-color: var(--color-ivory);
}
.section-muted {
    background-color: #F5F2EC; /* Slightly darker cream for contrast */
}

.section-dark {
    background-color: var(--color-mehndi-green);
    color: var(--color-ivory);
}
.section-dark h2 {
    color: var(--color-gold);
}

.section-title {
    font-size: var(--font-size-section-heading);
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
/* Specifically forcing 4 horizontal items on desktop */
.grid-4 { grid-template-columns: repeat(4, 1fr); } 
.grid-4-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

/* Header & Navigation Layout */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
}
.header.sticky {
    padding: 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px; /* Fixed height for consistent vertical centering */
    transition: var(--transition-medium);
}
.header.sticky .header-container {
    height: 70px;
}

/* Left: Logo */
/* Left: Logo */
.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}
.header-logo-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border: 2px solid var(--color-gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 175, 55, 0.2);
    box-sizing: border-box;
    padding: 3px;
    flex-shrink: 0;
    transition: var(--transition-medium);
}
.header-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(0.92);
    border-radius: 0;
}
.header.sticky .header-logo-badge {
    width: 56px;
    height: 56px;
}
.header-logo img {
    border-radius: 50%;
    transition: var(--transition-medium);
}

/* Header mobile elements hidden on desktop */
.header-mobile-actions {
    display: none;
}
.nav-mobile-cta-row {
    display: none;
}
.nav-mobile-brand {
    display: none;
}

/* Footer Logo Badge (Desktop) */
.footer-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #000000;
    border: 2px solid var(--color-gold);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.2);
    box-sizing: border-box;
    padding: 4px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.footer-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transform: scale(0.92);
    border-radius: 0;
}

/* Center: Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0 auto; /* Forces center alignment in flex container */
}
.nav-links a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--color-mehndi-green);
    position: relative;
    padding: 5px 0;
}
.nav-links a:hover {
    color: var(--color-maroon);
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-gold);
    transition: var(--transition-medium);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Right: Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-social {
    display: flex;
    gap: 0.8rem;
}
.header-social a {
    color: var(--color-mehndi-green);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}
.header-social a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

.header-ctas {
    display: flex;
    gap: 1rem;
}
.header-ctas .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--color-mehndi-green);
}

/* Cards & Premium Styling */
.premium-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition-medium);
    border-bottom: 3px solid transparent;
}
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--color-gold);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-medium);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.testimonial-card .quote-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    background: var(--color-gold);
    color: var(--color-white);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

/* Footer layout */
.footer {
    background-color: var(--color-mehndi-green); /* Deep Green */
    color: var(--color-ivory);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* 4 Columns */
    gap: 3rem;
    margin-bottom: var(--spacing-lg);
}
.footer h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.footer-links li, .footer-contact li {
    margin-bottom: 1rem;
}
.footer-links a {
    color: rgba(253, 251, 247, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}
.footer-links a i {
    font-size: 0.8rem;
    color: var(--color-gold);
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}
.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-top: 5px;
}
.footer-contact span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.footer-contact a, .footer-contact p {
    color: rgba(253, 251, 247, 0.9);
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(200, 169, 126, 0.2); /* Gold border with low opacity */
    font-size: 0.9rem;
    color: rgba(253, 251, 247, 0.6);
}
.footer-legal a {
    color: rgba(253, 251, 247, 0.6);
}
.footer-legal a:hover {
    color: var(--color-gold);
}
.separator { margin: 0 10px; }
