:root {
    --henna-dark: #5a2f0b;
    --henna-medium: #8b4513;
    --henna-light: #d2691e;
    --henna-accent: #ff6b35;
    --gold: #ffd700;
    --cream: #fef7ec;
    --dark: #2c1810;
    --text: #5a3927;
    --transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #fef7ec 0%, #f8f0e3 100%);
    color: var(--text);
    overflow-x: hidden;
}

/* Ultra Unique Header */
.ultra-header {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(165deg, #2c1810 0%, #3a2318 30%, #4a2e1c 100%);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-scrolled {
    padding: 5px 0;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-ornament {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,20 Q50,5 70,20 Q85,40 70,60 Q50,75 30,60 Q15,40 30,20 Z" fill="none" stroke="%23ffd700" stroke-width="0.5"/></svg>') repeat,
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.02"><path d="M20,50 C20,20 50,20 50,50 C50,80 80,80 80,50" fill="none" stroke="%23ff6b35" stroke-width="0.3"/></svg>') repeat;
    pointer-events: none;
}

.header-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* Revolutionary Logo Design */
.logo-masterpiece {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 15px 0;
}

.logo-sculpture {
    position: relative;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.logo-core {
    width: 60px;
    height: 60px;
    background: conic-gradient(from 0deg, var(--henna-accent), var(--gold), var(--henna-light), var(--henna-accent));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.logo-ring {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: spin 8s linear infinite;
}

.logo-henna {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.logo-text {
    font-family: 'Cinzel', serif;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-text p {
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 300;
}

/* Revolutionary Navigation */
.nav-art {
    display: flex;
    justify-content: center;
    position: relative;
}

.nav-canvas {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition);
}

.nav-canvas:hover::before {
    left: 100%;
}

.nav-stroke {
    display: flex;
    list-style: none;
    gap: 2px;
    position: relative;
}

.nav-stroke li {
    position: relative;
}

.nav-stroke a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    padding: 12px 24px;
    border-radius: 30px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.nav-stroke a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transition: var(--transition);
}

.nav-stroke a:hover::before {
    left: 100%;
}

.nav-stroke a:hover {
    color: white;
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.nav-stroke a.active {
    color: white;
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Header Actions Masterpiece */
.action-gallery {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-art {
    display: flex;
    gap: 12px;
}

.social-canvas {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, var(--henna-accent), var(--gold), var(--henna-light), var(--henna-accent));
    opacity: 0;
    transition: var(--transition);
}

.social-canvas:hover::before {
    opacity: 0.3;
}

.social-canvas:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.social-canvas i {
    position: relative;
    z-index: 2;
}

.cta-masterpiece {
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    box-shadow: 
        0 6px 20px rgba(255, 107, 53, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-masterpiece::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.cta-masterpiece:hover::before {
    left: 100%;
}

.cta-masterpiece:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Mobile Toggle */
.mobile-art {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

.mobile-art:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Ultra Unique Hero Slider - TEXT SLIDER ONLY */
.hero-universe {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    background: 
        linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)),
        url('https://rajumehandiartistkarolbagh.com/ima/meh1.png') center/cover no-repeat fixed;
}

.slider-dimension {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-realm {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-realm.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    position: relative;
}

.slide-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--henna-accent), transparent);
}

.slide-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-cta {
    display: inline-flex;
    gap: 20px;
    align-items: center;
}

.cta-master {
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    box-shadow: 
        0 8px 30px rgba(255, 107, 53, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-master::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.cta-master:hover::before {
    left: 100%;
}

.cta-master:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    border-color: var(--henna-accent);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
}

/* Revolutionary Navigation */
.slider-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
}

.nav-arrows {
    display: flex;
    gap: 15px;
}

.arrow-art {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.arrow-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.arrow-art:hover::before {
    left: 100%;
}

.arrow-art:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(1.1);
    border-color: var(--henna-accent);
}

.progress-art {
    display: flex;
    gap: 10px;
    align-items: center;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.progress-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: var(--transition);
}

.progress-dot.active {
    background: var(--henna-accent);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.progress-dot.active::before {
    left: 100%;
}

.progress-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 40px;
    right: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    z-index: 100;
}

/* About Us Banner Section */
.about-banner {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    background: 
        linear-gradient(rgba(44, 24, 16, 0.8), rgba(44, 24, 16, 0.8)),
        url('https://rajumehandiartistkarolbagh.com/ima/meh1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
}

.banner-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.banner-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.banner-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.banner-breadcrumb a:hover {
    color: var(--henna-accent);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: var(--gold);
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fef7ec 0%, #f8f0e3 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    padding-right: 40px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.about-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 40px;
    font-weight: 400;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.feature-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    opacity: 0.9;
}

.about-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-secondary {
    background: transparent;
    color: var(--henna-medium);
    border: 2px solid var(--henna-medium);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.cta-secondary:hover {
    background: var(--henna-medium);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(90, 47, 11, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover .image-main {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(90, 47, 11, 0.1), rgba(255, 107, 53, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    transform: scale(0.8);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.about-image:hover .play-button {
    transform: scale(1);
}

.play-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* Background Decorations */
.about-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50,100 C50,50 100,50 100,100 C100,150 150,150 150,100" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.05"/></svg>') no-repeat;
    animation: float 10s ease-in-out infinite;
}

.decoration-2 {
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M80,50 Q120,30 150,80 Q130,120 80,100 Q30,80 50,30 Z" fill="none" stroke="%23d2691e" stroke-width="1" opacity="0.04"/></svg>') no-repeat;
    animation: float 8s ease-in-out infinite reverse;
}

/* Mehendi Services Section */
.mehendi-services-section {
    padding: 120px 0;
    background: 
        linear-gradient(rgba(44, 24, 16, 0.85), rgba(44, 24, 16, 0.85)),
        url('https://images.unsplash.com/photo-1594736797933-d0c6e4d78c1a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover fixed;
    position: relative;
    overflow: hidden;
}

.services-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.services-content {
    color: white;
}

.services-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
    border-radius: 2px;
}

.services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: var(--transition);
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-item.active {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--henna-accent);
    transform: translateX(10px);
}

.service-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.service-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.services-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.services-display {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.services-display:hover .service-overlay {
    transform: translateY(0);
}

.service-overlay-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-overlay-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Decorations */
.services-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.services-decoration-1 {
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50,100 C50,50 100,50 100,100 C100,150 150,150 150,100" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/></svg>') no-repeat;
    animation: float 10s ease-in-out infinite;
}

.services-decoration-2 {
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M80,50 Q120,30 150,80 Q130,120 80,100 Q30,80 50,30 Z" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.08"/></svg>') no-repeat;
    animation: float 8s ease-in-out infinite reverse;
}

/* Premium Gallery Section */
.gallery-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(rgba(44, 24, 16, 0.9), rgba(44, 24, 16, 0.9)),
        url('https://rajumehandiartistkarolbagh.com/ima/m1.png') center/cover fixed;
}

.gallery-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
    border-radius: 2px;
}

.gallery-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(90, 47, 11, 0.2), rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-cta {
    text-align: center;
}

/* Image Popup Modal */
.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-popup.active .popup-image {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.popup-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.popup-prev, .popup-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-prev:hover, .popup-next:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: scale(1.1);
    border-color: var(--henna-accent);
}

/* Gallery Decorations */
.gallery-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.gallery-decoration-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50,100 C50,50 100,50 100,100 C100,150 150,150 150,100" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/></svg>') no-repeat;
    animation: float 10s ease-in-out infinite;
}

.gallery-decoration-2 {
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M80,50 Q120,30 150,80 Q130,120 80,100 Q30,80 50,30 Z" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.08"/></svg>') no-repeat;
    animation: float 8s ease-in-out infinite reverse;
}

/* Premium FAQ Section */
.faq-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: 
        linear-gradient(rgba(44, 24, 16, 0.85), rgba(44, 24, 16, 0.85)),
        url('https://images.unsplash.com/photo-1594736797933-d0c6e4d78c1a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80') center/cover fixed;
}

.faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.faq-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 2;
}

.faq-decoration-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50,100 C50,50 100,50 100,100 C100,150 150,150 150,100" fill="none" stroke="%23ff6b35" stroke-width="1" opacity="0.1"/></svg>') no-repeat;
    animation: float 10s ease-in-out infinite;
}

.faq-decoration-2 {
    bottom: 15%;
    right: 8%;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M80,50 Q120,30 150,80 Q130,120 80,100 Q30,80 50,30 Z" fill="none" stroke="%23ffd700" stroke-width="1" opacity="0.08"/></svg>') no-repeat;
    animation: float 8s ease-in-out infinite reverse;
}

.faq-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
    border-radius: 2px;
}

.faq-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.faq-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.faq-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: var(--transition);
}

.faq-box:hover::before {
    left: 100%;
}

.faq-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

.faq-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: var(--transition);
}

.faq-box:hover .faq-icon {
    transform: scale(1.1) rotate(5deg);
}

.faq-question {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.faq-cta {
    text-align: center;
}

/* Premium Footer Styles */
.premium-footer {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(165deg, #2c1810 0%, #3a2318 30%, #4a2e1c 100%);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-ornament {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,20 Q50,5 70,20 Q85,40 70,60 Q50,75 30,60 Q15,40 30,20 Z" fill="none" stroke="%23ffd700" stroke-width="0.5"/></svg>') repeat,
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.02"><path d="M20,50 C20,20 50,20 50,50 C50,80 80,80 80,50" fill="none" stroke="%23ff6b35" stroke-width="0.3"/></svg>') repeat;
    pointer-events: none;
}

.footer-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Column 1: Logo and About */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo-sculpture {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.footer-logo-core {
    width: 45px;
    height: 45px;
    background: conic-gradient(from 0deg, var(--henna-accent), var(--gold), var(--henna-light), var(--henna-accent));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.footer-logo-ring {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    border-top-color: transparent;
    border-right-color: transparent;
    animation: spin 8s linear infinite;
}

.footer-logo-henna {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.footer-logo-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: 1px;
}

.footer-logo-text p {
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 300;
}

.footer-about {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-weight: 300;
}

.footer-newsletter h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: white;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: white;
    font-size: 14px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--henna-accent);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--henna-accent), #ff8c00);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Column 2: Our Services */
.footer-services h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-services h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--henna-accent), transparent);
    transition: var(--transition);
}

.service-link:hover {
    color: white;
    transform: translateX(10px);
}

.service-link:hover::before {
    left: 100%;
}

.service-link i {
    margin-right: 10px;
    font-size: 12px;
    color: var(--henna-accent);
    transition: var(--transition);
}

.service-link:hover i {
    transform: scale(1.2);
}

/* Column 3: Useful Links */
.footer-links h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--henna-accent), transparent);
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
    transform: translateX(10px);
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link i {
    margin-right: 10px;
    font-size: 12px;
    color: var(--henna-accent);
    transition: var(--transition);
}

.footer-link:hover i {
    transform: scale(1.2);
}

/* Column 4: Contact Info */
.footer-contact h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--henna-accent);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover .contact-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
    border-color: var(--henna-accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 14px;
    color: white;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg, var(--henna-accent), var(--gold), var(--henna-light), var(--henna-accent));
    opacity: 0;
    transition: var(--transition);
}

.social-link:hover::before {
    opacity: 0.3;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.social-link i {
    position: relative;
    z-index: 2;
}

/* Footer Bottom */
.footer-bottom {
    width: 95%;
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-link:hover {
    color: white;
}

/* Floating Elements */
.footer-floating-art {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    animation: float 8s ease-in-out infinite;
}

.footer-art-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M50,100 C50,50 100,50 100,100 C100,150 150,150 150,100" fill="none" stroke="%23ff6b35" stroke-width="2" opacity="0.1"/></svg>') no-repeat;
    animation-delay: 0s;
}

.footer-art-2 {
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M80,50 Q120,30 150,80 Q130,120 80,100 Q30,80 50,30 Z" fill="none" stroke="%23ffd700" stroke-width="1.5" opacity="0.08"/></svg>') no-repeat;
    animation-delay: 2s;
}

.footer-art-3 {
    top: 40%;
    right: 15%;
    width: 70px;
    height: 70px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100,50 C150,50 180,100 150,150 C100,180 50,150 50,100 C20,50 50,20 100,50 Z" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.05"/></svg>') no-repeat;
    animation-delay: 4s;
}

/* Animations */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(8px) rotate(-2deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1100px) {
    .header-container {
        grid-template-columns: auto 1fr;
        gap: 20px;
    }
    
    .nav-art {
        order: 3;
        grid-column: 1 / -1;
        margin-top: 20px;
    }

    .slide-title {
        font-size: 4rem;
    }

    .about-banner {
        height: 350px;
    }

    .banner-title {
        font-size: 3rem;
    }

    .about-container {
        gap: 60px;
    }

    .about-title {
        font-size: 3rem;
    }

    .services-container {
        gap: 60px;
    }

    .services-title {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-title {
        font-size: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-title {
        font-size: 3rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-canvas {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        z-index: 1000;
    }
    
    .nav-canvas.active {
        display: flex;
    }
    
    .nav-stroke {
        flex-direction: column;
        width: 100%;
    }
    
    .mobile-art {
        display: flex;
    }
    
    .social-art {
        display: none;
    }

    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .slider-navigation {
        bottom: 20px;
        gap: 15px;
    }
    
    .arrow-art {
        width: 50px;
        height: 50px;
    }

    .hero-universe {
        margin-top: 100px;
    }

    .about-banner {
        height: 300px;
        margin-top: 100px;
    }

    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-image {
        height: 400px;
        order: -1;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-display {
        height: 400px;
        order: -1;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-title {
        font-size: 2.5rem;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-box {
        padding: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-sculpture {
        width: 60px;
        height: 60px;
    }
    
    .logo-core {
        width: 45px;
        height: 45px;
    }
    
    .logo-ring {
        width: 60px;
        height: 60px;
    }
    
    .cta-masterpiece {
        padding: 12px 20px;
        font-size: 12px;
    }

    .slide-title {
        font-size: 2.5rem;
    }
    
    .floating-art {
        display: none;
    }
    
    .slide-counter {
        top: 20px;
        right: 20px;
    }

    .about-banner {
        height: 250px;
    }

    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 2rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .about-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-item {
        padding: 15px 20px;
    }

    .services-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-box {
        padding: 25px;
    }

    .faq-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .faq-question {
        font-size: 1.3rem;
    }

    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-sculpture {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-logo-text h3 {
        font-size: 20px;
    }
    
    .footer-logo-text p {
        font-size: 9px;
    }
    
    .footer-services h3,
    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
    }
}





/* Contact Banner Styles */
.contact-banner {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ffffff" opacity="0.1"><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z"/></svg>');
    background-size: 200px;
    animation: float 20s infinite linear;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f4f0 0%, #fffaf0 100%);
    overflow: hidden;
}

.contact-decoration {
    position: absolute;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%238B4513" opacity="0.1"><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30 Z"/></svg>');
    background-size: contain;
    width: 300px;
    height: 300px;
}

.decoration-1 {
    top: 10%;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.decoration-2 {
    bottom: 10%;
    right: -100px;
    animation: float 18s infinite ease-in-out reverse;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Contact Info Styles */
.contact-info {
    padding-right: 40px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a4a3a;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 8px;
}

.contact-content p {
    font-family: 'Inter', sans-serif;
    color: #5a4a3a;
    line-height: 1.5;
    margin: 0;
}

.social-contact h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(139, 69, 19, 0.4);
    color: white;
}

/* Contact Form Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
}

.form-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 30px;
    text-align: center;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e8e0d8;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fcfaf8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 10px;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 80px 0 60px;
    }
    
    .banner-title {
        font-size: 2.8rem;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}



/* Services Banner Styles */
.services-banner {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    background: 
        linear-gradient(rgba(44, 24, 16, 0.8), rgba(44, 24, 16, 0.8)),
        url('https://rajumehandiartistkarolbagh.com/ima/meh1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-banner .banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%);
}

.services-banner .banner-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.services-banner .banner-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.services-banner .banner-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.services-banner .banner-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.services-banner .banner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.services-banner .banner-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.services-banner .banner-breadcrumb a:hover {
    color: var(--henna-accent);
}

.services-banner .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.services-banner .breadcrumb-current {
    color: var(--gold);
    font-weight: 600;
}

/* All Services Section */
.all-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef7ec 0%, #f8f0e3 100%);
    position: relative;
    overflow: hidden;
}

.all-services-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.all-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.all-services-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}

.all-services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--henna-accent), var(--gold));
    border-radius: 2px;
}

.all-services-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(90, 47, 11, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(90, 47, 11, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card-image {
    position: relative;
    height: 250px;
    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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(90, 47, 11, 0.8), rgba(255, 107, 53, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-cta {
    background: white;
    color: var(--henna-medium);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.service-card-cta:hover {
    background: var(--henna-medium);
    color: white;
    transform: scale(1.05);
}

.service-card-content {
    padding: 25px;
}

.service-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    min-height: 80px;
}

.service-card-meta {
    display: flex;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid rgba(90, 47, 11, 0.1);
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(37, 211, 102, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
}

.whatsapp-consultation {
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-float-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.7),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(44, 24, 16, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    }
}

.all-services-cta {
    text-align: center;
}

/* Responsive Styles for Services */
@media (max-width: 1100px) {
    .services-banner {
        height: 350px;
    }

    .services-banner .banner-title {
        font-size: 3rem;
    }

    .all-services-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-banner {
        height: 300px;
        margin-top: 100px;
    }

    .services-banner .banner-title {
        font-size: 2.5rem;
    }
    
    .services-banner .banner-subtitle {
        font-size: 1.1rem;
    }

    .all-services-section {
        padding: 80px 0;
    }

    .all-services-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card-content {
        padding: 20px;
    }

    .service-card-title {
        font-size: 1.2rem;
        min-height: auto;
    }

    .service-card-description {
        min-height: auto;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .services-banner {
        height: 250px;
    }

    .services-banner .banner-title {
        font-size: 2rem;
    }
    
    .services-banner .banner-subtitle {
        font-size: 1rem;
    }

    .all-services-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}