:root {
    --primary-bg: #6c1328; /* Dark burgundy */
    --primary-color: #6c1328;
    --accent-pink: #dfaeb6; /* Pale pink for buttons and footer bottom */
    --text-dark: #333333;
    --text-grey: #666666;
    --heading-color: #7f3b49; /* Lighter burgundy/pink for section headings */
    --icon-pink: #d8899c; /* Pink for SVG icons */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

h1, h2, h3, h4, .logo-main, .hero-title, .section-title, .footer-title {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* --- Header / Nav --- */
.navbar {
    background-color: var(--primary-bg);
    color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-pink);
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-pink);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #ffffff;
}

/* --- Hero Section --- */
.hero-slider {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Overlay to make text pop */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-title {
    font-size: 64px;
    letter-spacing: 6px;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    min-height: 1em; /* Prevents layout shift; changed to 1em to match tighter line height */
    line-height: 1;
}

.hero-title::after {
    content: '|';
    animation: blink 0.75s step-end infinite;
    color: var(--accent-pink);
    margin-left: 2px;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background-color: transparent;
    cursor: pointer;
}

.dot.active {
    background-color: #ffffff;
}


/* --- About Us --- */
.about {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    color: var(--heading-color);
    font-size: 32px;
    margin-bottom: 30px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.8;
}

/* --- Stats Section --- */
.stats {
    background-image: url('../images/stats-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-number {
    font-size: 64px;
    font-family: var(--font-body); /* Outfit for stats numbers */
    font-style: normal;
    font-weight: 500;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Services (What We Do) --- */
.services {
    padding: 80px 0;
    text-align: center;
}

.services .section-title {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

/* Create the cross border layout */
.service-item:nth-child(1) { border-right: 1px solid #e0e0e0; }
/* .service-item:nth-child(2) Only bottom */
.service-item:nth-child(3) { border-bottom: none; border-right: 1px solid #e0e0e0; }
.service-item:nth-child(4) { border-bottom: none; }

.service-icon {
    color: var(--icon-pink);
    margin-bottom: 20px;
}

.service-icon svg,
.service-icon img {
    width: 40px;
    height: 40px;
}

.service-title {
    color: var(--text-grey); /* In the design titles are grey */
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-text {
    color: var(--text-grey);
    font-size: 13px;
    max-width: 280px;
}


/* --- Footer --- */
.footer {
    background-color: var(--primary-bg);
    color: #ffffff;
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    gap: 40px;
}

.footer-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-details li {
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    font-size: 14px;
    color: var(--accent-pink);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    background-color: transparent;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-pink);
    color: var(--primary-bg);
}

.contact-form-container {
    flex: 1;
    max-width: 500px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 13px;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #ffffff;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.form-group textarea {
    resize: vertical;
    min-height: 40px;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 8px 30px;
    float: right;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary-bg);
}

.footer-bottom {
    background-color: var(--accent-pink);
    color: var(--primary-bg);
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 500;
}


/* --- Responsive Design --- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-item:nth-child(1),
    .service-item:nth-child(2),
    .service-item:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form-container {
        max-width: 100%;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 40px;
        letter-spacing: 4px;
    }
    
    .about, .stats, .services, .footer {
        padding: 50px 0;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-item {
        width: 45%;
    }
    
    .stat-number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .logo-main {
        font-size: 26px;
    }
    
    .logo-main::first-letter {
        font-size: 32px;
    }
}
