/* --- CSS Variables & Reset --- */
:root {
    --color-plum: #5D2E5D;
    --color-plum-dark: #3D1F3D;
    --color-plum-light: #8A4B8A;
    --color-amber: #F4B41A;
    --color-amber-light: #FFD54F;
    --color-cream: #FFF8E1;
    --color-white: #FFFFFF;
    --color-text-dark: #1A1A1A;
    --color-text-light: #F5F5F5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-soft: 0 10px 40px -10px rgba(93, 46, 93, 0.15);
    --shadow-card: 0 15px 35px rgba(0,0,0,0.1);
    --radius-lg: 24px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* --- Background Blobs --- */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--color-amber);
    opacity: 0.2;
}

.shape-2 {
    top: 40%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--color-plum);
    opacity: 0.1;
}

.shape-3 {
    bottom: -5%;
    left: 20%;
    width: 30vw;
    height: 30vw;
    background: var(--color-plum-light);
    opacity: 0.15;
}

/* --- Typography & Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.text-accent {
    color: var(--color-plum);
}

.section-tag {
    display: inline-block;
    background: var(--color-amber);
    color: var(--color-plum-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3rem;
    color: var(--color-plum-dark);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--color-plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(93, 46, 93, 0.3);
}

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

.btn-secondary:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--color-plum);
    color: var(--color-plum);
}

.btn-outline:hover {
    background: var(--color-plum);
    color: var(--color-white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 225, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(93, 46, 93, 0.1);
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-plum-dark);
    text-decoration: none;
}

.logo span {
    color: var(--color-amber);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-plum-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
    color: var(--color-amber);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-plum-dark);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-plum-dark);
    z-index: 1001;
    padding: 80px 40px;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.close-menu-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-amber);
}

.mobile-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-link.btn {
    align-self: flex-start;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-plum-dark) 0%, var(--color-plum) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    color: var(--color-white);
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 180, 26, 0.2);
    border: 1px solid var(--color-amber);
    color: var(--color-amber);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    color: var(--color-white);
}

.hero-title .text-accent {
    color: var(--color-amber);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Geometric Decorations */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(244, 180, 26, 0.3);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 35%;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 45%;
    background: rgba(244, 180, 26, 0.1);
}

.geo-square {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    top: 25%;
    right: 40%;
}

/* Hero Images */
.hero-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 500px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.img-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.img-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--color-white);
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.img-1 { height: 280px; }
.img-2 { height: 200px; margin-top: 40px; }
.img-3 { height: 200px; margin-top: -40px; }

/* --- Features Section --- */
.features {
    padding: 80px 0;
    background: var(--color-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 1px solid rgba(93, 46, 93, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card.accent-bg {
    background: var(--color-plum);
    color: var(--color-white);
}

.feature-card.accent-bg h3 {
    color: var(--color-amber);
}

.feature-card.accent-bg p {
    color: rgba(255,255,255,0.8);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-plum);
    margin-bottom: 24px;
}

.feature-card.accent-bg .feature-icon {
    background: rgba(244, 180, 26, 0.2);
    color: var(--color-amber);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-plum-dark);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* --- Services Section --- */
.services {
    padding: 100px 0;
    background: var(--color-white);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--color-amber);
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.service-img {
    height: 240px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--color-plum-dark);
    margin-bottom: 12px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: linear-gradient(to right, var(--color-cream) 50%, var(--color-plum) 50%);
}

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

.about-content {
    padding-right: 40px;
}

.about-text {
    color: #555;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.about-images {
    position: relative;
}

.img-stack {
    position: relative;
}

.img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-amber);
    color: var(--color-plum-dark);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list {
    list-style: none;
    margin-top: 32px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--color-plum-dark);
}

.check-list li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--color-amber);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* --- Contact Section --- */
.contact {
    padding: 100px 0;
    background: var(--color-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-info {
    background: var(--color-plum);
    color: var(--color-white);
    padding: 60px;
    display: flex;
    flex-direction: column;
}

.contact-info .section-tag {
    background: rgba(244, 180, 26, 0.2);
    color: var(--color-amber);
}

.contact-info .section-title {
    color: var(--color-white);
}

.contact-desc {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail-item {
    display: flex;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(244, 180, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-amber);
    flex-shrink: 0;
}

.detail-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-white);
}

.detail-item p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.detail-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-item a:hover {
    color: var(--color-amber);
}

.contact-form-wrapper {
    padding: 60px;
}

.form-card h3 {
    font-size: 2rem;
    color: var(--color-plum-dark);
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--color-plum-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--color-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-plum);
    background: var(--color-white);
}

.success-message {
    margin-top: 16px;
    padding: 16px;
    background: #d4edda;
    color: #155724;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
}

/* --- Footer --- */
.footer {
    background: var(--color-plum-dark);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--color-white);
}

.footer-brand p {
    opacity: 0.7;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-images {
        margin: 60px auto 0;
        max-width: 400px;
    }
    
    .about {
        background: var(--color-cream);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
    }
    
    .img-2, .img-3 {
        margin-top: 0;
    }
}
