/* ============================================
   MITHUNAM WALL ART - ENHANCED STYLESHEET
   Rich Multi-Color Art Theme
   ============================================ */

/* CSS Variables - Rich Color Palette */
:root {
    /* Primary Colors */
    --brick-red: #8B2E2E;
    --brick-red-dark: #6B1F1F;
    --brick-red-light: #A84A4A;
    --crimson: #DC143C;
    
    /* Gold & Amber */
    --gold: #D4AF37;
    --amber: #FFBF00;
    --saffron: #FF9933;
    --deep-orange: #FF6B35;
    
    /* Blues & Teals */
    --turquoise: #40E0D0;
    --teal: #008080;
    --navy: #1B365D;
    --royal-blue: #4169E1;
    
    /* Purples */
    --deep-purple: #6A1B9A;
    --purple: #9B59B6;
    --lavender: #E6E6FA;
    
    /* Greens */
    --emerald: #50C878;
    --forest-green: #228B22;
    --mint: #98FB98;
    
    /* Neutrals */
    --beige: #F5E5C8;
    --beige-dark: #E8D4B0;
    --beige-light: #FDF8F0;
    --cream: #FFFDD0;
    --ivory: #FFFFF0;
    
    /* Text Colors */
    --text-dark: #2C1810;
    --text-light: #5C4A3A;
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow: rgba(139, 46, 46, 0.15);
    --shadow-hover: rgba(139, 46, 46, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--ivory) 50%, var(--beige) 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

p {
    color: var(--text-light);
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Enhanced Navigation */
.navbar {
    background: linear-gradient(180deg, var(--white) 0%, var(--beige-light) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 46, 46, 0.1);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--brick-red) 0%, var(--gold) 25%, var(--turquoise) 50%, var(--deep-purple) 75%, var(--brick-red) 100%) 1;
    position: relative;
}

.nav-art-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px);
    pointer-events: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--gold) 50%, var(--turquoise) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--crimson) 50%, var(--deep-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brick-red) 0%, var(--gold) 50%, var(--turquoise) 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    opacity: 0.1;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a.active {
    color: var(--brick-red);
    font-weight: 600;
}

.nav-bottom-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--brick-red) 0%, 
        var(--gold) 20%, 
        var(--turquoise) 40%, 
        var(--deep-purple) 60%, 
        var(--emerald) 80%, 
        var(--brick-red) 100%);
    background-size: 200% 100%;
    animation: gradient-flow 5s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--brick-red) 0%, var(--gold) 100%);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, 
        var(--beige-light) 0%, 
        var(--ivory) 25%, 
        var(--cream) 50%, 
        var(--beige) 75%, 
        var(--beige-light) 100%);
    overflow: hidden;
    padding: 2rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.art-pattern-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.pattern-1 {
    background-image: 
        radial-gradient(circle at 20% 30%, var(--brick-red) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, var(--gold) 2px, transparent 2px);
    background-size: 60px 60px, 80px 80px;
    animation: pattern-move 20s linear infinite;
}

.pattern-2 {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, var(--turquoise) 20px, var(--turquoise) 21px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, var(--deep-purple) 20px, var(--deep-purple) 21px);
    opacity: 0.1;
    animation: pattern-move 15s linear infinite reverse;
}

.pattern-3 {
    background: 
        radial-gradient(ellipse at top left, var(--gold) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, var(--turquoise) 0%, transparent 50%),
        radial-gradient(ellipse at top right, var(--deep-purple) 0%, transparent 50%);
    opacity: 0.08;
}

@keyframes pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-art-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.art-element {
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    animation: float-art 15s infinite ease-in-out;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    color: var(--brick-red);
}

.element-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
    color: var(--gold);
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    color: var(--turquoise);
}

.element-4 {
    top: 50%;
    right: 25%;
    animation-delay: 6s;
    color: var(--deep-purple);
}

.element-5 {
    bottom: 20%;
    right: 10%;
    animation-delay: 8s;
    color: var(--emerald);
}

.element-6 {
    top: 40%;
    left: 5%;
    animation-delay: 10s;
    color: var(--saffron);
}

@keyframes float-art {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translateY(-35px) rotate(3deg) scale(1.05);
    }
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: shape-pulse 8s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--brick-red) 0%, transparent 70%);
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    animation-delay: 2s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 5%;
    background: radial-gradient(circle, var(--turquoise) 0%, transparent 70%);
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 10%;
    background: radial-gradient(circle, var(--deep-purple) 0%, transparent 70%);
    animation-delay: 6s;
}

@keyframes shape-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.15;
    }
}

.rangoli-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: 
        repeating-conic-gradient(from 0deg at 50% 50%, 
            var(--brick-red) 0deg 10deg, 
            transparent 10deg 20deg,
            var(--gold) 20deg 30deg,
            transparent 30deg 40deg,
            var(--turquoise) 40deg 50deg,
            transparent 50deg 60deg);
    border-radius: 50%;
    opacity: 0.05;
    animation: rotate-rangoli 30s linear infinite;
}

@keyframes rotate-rangoli {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--shadow-gold);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px var(--shadow-gold);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.1;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--crimson) 50%, var(--deep-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: title-glow 3s ease-in-out infinite;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 50%, var(--deep-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.7em;
    margin-top: 0.5rem;
}

@keyframes title-glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--brick-red) 0%, var(--gold) 50%, var(--turquoise) 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--crimson) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(139, 46, 46, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--brick-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 46, 46, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--brick-red);
    border: 2px solid var(--brick-red);
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.hero-side-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.left-decoration {
    left: 5%;
}

.right-decoration {
    right: 5%;
}

.decoration-line {
    width: 2px;
    height: 150px;
    background: linear-gradient(180deg, 
        var(--brick-red) 0%, 
        var(--gold) 25%, 
        var(--turquoise) 50%, 
        var(--deep-purple) 75%, 
        var(--brick-red) 100%);
    border-radius: 2px;
    animation: line-pulse 2s ease-in-out infinite;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    box-shadow: 0 0 15px var(--shadow-gold);
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes line-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes dot-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px var(--shadow-gold);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    border-right: 4px solid var(--brick-red);
    border-bottom: 4px solid var(--brick-red);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-15px) rotate(45deg);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--beige-light) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(64, 224, 208, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--deep-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-decoration {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--brick-red) 20%, 
        var(--gold) 50%, 
        var(--turquoise) 80%, 
        transparent 100%);
    margin: 0 auto;
    border-radius: 3px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-text .lead {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--crimson) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid;
    border-image: linear-gradient(180deg, var(--brick-red) 0%, var(--gold) 50%, var(--turquoise) 100%) 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--brick-red);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Page Hero (for Services & Testimonials) */
.page-hero {
    background: linear-gradient(135deg, 
        var(--brick-red) 0%, 
        var(--crimson) 25%, 
        var(--deep-purple) 50%, 
        var(--navy) 75%, 
        var(--brick-red) 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(245, 229, 200, 0.15) 3px, transparent 3px);
    background-size: 50px 50px;
    opacity: 0.6;
}

.page-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--beige);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--ivory) 50%, var(--beige-light) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(212, 175, 55, 0.02) 30px, rgba(212, 175, 55, 0.02) 31px);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(139, 46, 46, 0.05) 0%, 
        rgba(212, 175, 55, 0.05) 50%, 
        rgba(64, 224, 208, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 46, 46, 0.2);
    border-image: linear-gradient(135deg, var(--brick-red) 0%, var(--gold) 50%, var(--turquoise) 100%) 1;
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige) 100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--brick-red) 0%, 
        var(--crimson) 25%, 
        var(--gold) 50%, 
        var(--turquoise) 75%, 
        var(--deep-purple) 100%);
    background-size: 400% 400%;
    animation: gradient-shift 8s ease infinite;
    opacity: 0.9;
}

.placeholder-icon {
    font-size: 5rem;
    opacity: 0.7;
    filter: drop-shadow(2px 2px 8px rgba(0,0,0,0.3));
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(139, 46, 46, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--deep-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--brick-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brick-red) 0%, var(--gold) 100%);
    transition: width 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: var(--crimson);
}

.service-link:hover::after {
    width: 100%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--beige-light) 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(64, 224, 208, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--beige-light) 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.1);
    position: relative;
    transition: all 0.4s ease;
    border-top: 5px solid;
    border-image: linear-gradient(90deg, var(--brick-red) 0%, var(--gold) 50%, var(--turquoise) 100%) 1;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 46, 46, 0.2);
}

.testimonial-decoration {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.decorative-quote {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .decorative-quote {
    opacity: 0.5;
    transform: scale(1.1);
}

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

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--gold) 50%, var(--turquoise) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(139, 46, 46, 0.2);
}

.author-name {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--brick-red) 0%, var(--crimson) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.author-location {
    font-size: 0.95rem;
    color: var(--text-light);
}

.testimonial-motif {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-motif {
    opacity: 0.3;
    transform: scale(1.2) rotate(5deg);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--brick-red-dark) 0%, var(--navy) 100%);
    color: var(--beige);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(212, 175, 55, 0.05) 20px, rgba(212, 175, 55, 0.05) 21px);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-section p {
    color: var(--beige);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--beige);
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    opacity: 1;
    padding-left: 8px;
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(245, 229, 200, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--beige);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-side-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px var(--shadow);
        transition: left 0.3s ease;
        gap: 1.5rem;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .title-line-2 {
        font-size: 0.6em;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text .lead {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.8rem;
    }
    
    .floating-art-elements .art-element {
        font-size: 3rem;
    }
}

/* Smooth Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
