/* ===== CSS Variables ===== */
:root {
    --primary-color: #CE738B;      /* Mauve - main brand color */
    --secondary-color: #F2D5DA;    /* Pink - lighter accent */
    --accent-color: #BDCFFF;       /* Blue - call-to-action */
    --periwinkle: #C0D0FB;         /* Periwinkle - additional accent */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #FAF8F6;           /* Keep your light background */
    --bg-white: #FFFFFF;           /* Keep white */
    --border-color: #E5E5E5;
    
    --font-heading: 'Inter', sans-serif;        /* For section titles */
    --font-script: 'Lobster Two', cursive;      /* For decorative text */
    --font-body: 'Poppins', sans-serif;         /* Body text */
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ===== Navigation ===== */
.navbar {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo-circle:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--periwinkle);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
    background: var(--periwinkle);  /* Hover underline = periwinkle */
}

.nav-link.active::after {
    width: 100%;
    background: var(--primary-color);  /* Active underline = mauve pink */
}

.nav-link:hover {
    color: var(--periwinkle);  /* Hover = periwinkle */
}

.nav-link.active {
    color: var(--primary-color);  /* Active/current page = mauve pink */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-script);
    font-size: 4rem;
    font-weight: 400;  /* Normal, not italic */
    font-style: normal;  /* Explicitly not italic */
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* ===== Sections ===== */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Lobster Two', cursive;
    font-size: 2.5rem;
    font-weight: 400;  /* Normal weight, not italic */
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== Services Preview / Difference Grid ===== */
.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

.difference-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 10px;
    transition: var(--transition);
}

.difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(192, 208, 251, 0.4);  /* Periwinkle shadow */
    border: 2px solid var(--periwinkle);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #F2D5DA;  /* Light pink */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.difference-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.difference-card p {
    color: var(--text-light);
}

.cta-button-wrapper {
    text-align: center;
}

/* ===== Reviews Section ===== */
.reviews-section {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--bg-light);  /* Light cream background */
    color: var(--text-dark);
    text-align: center;
    border-top: 5px solid var(--primary-color);  /* Mauve top border */
}

.cta-section h2 {
    font-family: 'Lobster Two', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);  /* Mauve heading */
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);  /* Gray body text */
}
/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--periwinkle);  /* Periwinkle on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(192, 208, 251, 0.4);
}

.btn-secondary {
    background: var(--primary-color);  /* Mauve background */
    color: white;  /* White text */
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--periwinkle);  /* Periwinkle on hover */
    border-color: var(--periwinkle);
    color: white;
}

/* ===== Footer ===== */
/* Enhanced Footer Styling */
.footer {
    background: #FAF8F6;
    color: #333333;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--periwinkle), var(--accent-color));
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 1.1rem;
    color: #666666;
    font-style: italic;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    margin-bottom: 0.8rem;
    color: #666666;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--periwinkle);  /* Changed to periwinkle */
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);  /* Light pink background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
    color: white;  /* Added: Makes the SVG icons white */
}

.social-links a svg {
    color: white;  /* Added: Ensures SVG icons are white */
}

.social-links a:hover {
    background: var(--periwinkle);  /* Periwinkle on hover */
    transform: translateY(-5px) scale(1.1);
    border-color: var(--periwinkle);
    box-shadow: 0 5px 20px rgba(192, 208, 251, 0.4);
    color: white;  /* Keep icons white on hover */
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #666666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ===== Intro Section Styling ===== */
.intro-section {
    background: white;
    padding: 50px 0 40px;
    text-align: center;
}

.intro-section h2 {
    font-family: 'Lobster Two', cursive;
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.intro-section .tagline {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-section {
        padding: 30px 0 25px;  /* Even more compact on mobile */
    }

    .intro-section h2 {
        font-size: 1.8rem;  /* Reduced from 2rem */
    }

    .intro-section .tagline {
        font-size: 1rem;  /* Reduced from 1.1rem */
    }
}

/* ===== Enhanced Footer Styling ===== */
.footer {
    background: #FAF8F6;
    color: #333333;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--periwinkle), var(--accent-color));
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 1.1rem;
    color: #666666;
    font-style: italic;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    margin-bottom: 0.8rem;
    color: #666666;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--periwinkle);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
    color: white;
}

.social-links a svg {
    stroke: white;
}

.social-links a:hover {
    background: var(--periwinkle);
    transform: translateY(-5px) scale(1.1);
    border-color: var(--periwinkle);
    box-shadow: 0 5px 20px rgba(192, 208, 251, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #666666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-section h2 {
        font-size: 2rem;
    }

    .intro-section .tagline {
        font-size: 1.1rem;
    }
}

/* ===== Service Cards Grid (2 per row) ===== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(192, 208, 251, 0.4);  /* Periwinkle shadow */
    border: 2px solid var(--periwinkle);
}

.service-card-image {
    height: 300px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-family: 'Lobster Two', cursive;
    font-size: 1.8rem;
    font-weight: 400;  /* Normal weight */
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

.service-cta {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* ===== Portfolio Gallery ===== */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(192, 208, 251, 0.9), rgba(189, 207, 255, 0.9));  /* Periwinkle gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
}

.portfolio-overlay-content h3 {
    font-family: 'Lobster Two', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

/* ===== Contact Form ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Lobster Two', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-top: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);  /* Light pink */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--periwinkle);  /* Periwinkle focus */
}

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

.form-submit {
    width: 100%;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .difference-grid,
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .portfolio-gallery {
        grid-template-columns: 1fr;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}


/* ===== Decorative Border Header (Solid) ===== */
.decorative-border {
    background: white;
    color: #333;
    border: 3px solid #CE738B;  /* Solid mauve border */
    border-radius: 15px;
    margin: 20px;
    position: relative;
}

.decorative-border::before {
    content: '✦';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #CE738B;  /* Mauve flourish */
    background: white;
    padding: 0 20px;
}

.decorative-border::after {
    content: '✦';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: #CE738B;  /* Mauve flourish */
    background: white;
    padding: 0 20px;
}

.decorative-border h1 {
    color: #CE738B;
}

.decorative-border p {
    color: #666;
}

/* ===== Decorative Elements ===== */
.geometric-bg {
    background-image: 
        linear-gradient(45deg, var(--accent-color) 25%, transparent 25%),
        linear-gradient(-45deg, var(--accent-color) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--accent-color) 75%),
        linear-gradient(-45deg, transparent 75%, var(--accent-color) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.1;
}

/* ===== Additional Color Variations ===== */

/* Use blue for hover states on secondary buttons */
.btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}



/* Alternate card hover with periwinkle */
.difference-card:nth-child(even):hover {
    box-shadow: 0 10px 30px rgba(192, 208, 251, 0.3);
}

/* Blue accent for contact icons */
.contact-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--periwinkle));
}


/* ===== Icon Grid (2x2) ===== */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.icon-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 208, 251, 0.3);
    border-color: var(--periwinkle);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);  /* Light pink */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
}

.icon-card h3 {
    font-family: 'Lobster Two', cursive;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.icon-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .icon-grid {
        grid-template-columns: 1fr;
    }
}