:root {
    --gold: #C49A47;
    --gold-light: #D4AA57;
    --gold-dark: #A88437;
    --black: #000000;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --white: #ffffff;
    --white-off: #f8f8f8;
    --gray: #888888;
    --gray-light: #cccccc;
    --gradient-gold: linear-gradient(135deg, #C49A47 0%, #FFD700 50%, #C49A47 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(196, 154, 71, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

.sticky-social-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 9999;
}

.sticky-social-bar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.sticky-social-bar .facebook { background: #3b5998; }
.sticky-social-bar .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sticky-social-bar .youtube { background: #FF0000; }
.sticky-social-bar .whatsapp { background: #25D366; }

.sticky-social-bar .social-icon:hover {
    width: 60px;
    padding-left: 10px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .logo img {
    height: 100px;
    transition: var(--transition);
}

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

.nav-items > a,
.nav-items .dropdown > a {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px;
    position: relative;
    transition: var(--transition);
}

.nav-items > a:hover,
.nav-items > a.active,
.nav-items .dropdown:hover > a {
    color: var(--white);
}

.nav-items > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-items > a:hover::after,
.nav-items > a.active::after {
    width: 70%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--black);
    border-top: 3px solid var(--gold);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--gray-light);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(196, 154, 71, 0.1);
    padding-left: 30px;
}

.mega-dropdown .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    min-width: 800px;
    background: var(--black);
    border-top: 3px solid var(--gold);
    padding: 25px 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-column {
    padding: 0 15px;
    border-right: 1px solid rgba(196, 154, 71, 0.2);
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-column a {
    display: block;
    padding: 8px 10px;
    color: var(--gray-light);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 4px;
}

.mega-menu-column a:hover {
    color: var(--gold);
    background: rgba(196, 154, 71, 0.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
}

.nav-phone i {
    font-size: 16px;
}

.nav-btn {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide video,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
    z-index: 10;
    color: var(--white);
}

.hero-content .subtitle {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 60px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(196, 154, 71, 0.8);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
}

.hero-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav.prev { left: 30px; }
.hero-nav.next { right: 30px; }

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

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

.hero-dots .dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.section-padding {
    padding: 100px 0;
}

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

.section-title .subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-title h2 span {
    color: var(--gold);
}

.section-title .divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
}

.welcome-section {
    background: var(--white);
}

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

.welcome-image {
    position: relative;
}

.welcome-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.welcome-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.welcome-content h3 span {
    color: var(--gold);
}

.welcome-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 17px;
}

.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.welcome-feature i {
    color: var(--gold);
    font-size: 20px;
}

.services-section {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C49A47" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.services-section .section-title h2,
.services-section .section-title p {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.service-card-image {
    position: relative;
    height: 220px;
    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(to bottom, transparent 50%, rgba(0,0,0,0.7) 100%);
}

.service-card-content {
    padding: 25px;
    text-align: center;
}

.service-card-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.service-card-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-card-content .read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card-content .read-more:hover {
    gap: 10px;
}

.tv-frame-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

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

.tv-frame-content {
    color: var(--white);
}

.tv-frame-content .subtitle {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tv-frame-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.tv-frame-content p {
    color: var(--gray-light);
    font-size: 17px;
    margin-bottom: 30px;
}

.tv-frame-3d {
    perspective: 1000px;
}

.tv-frame {
    position: relative;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.tv-frame:hover {
    transform: rotateY(0) rotateX(0);
}

.tv-frame::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
}

.tv-screen {
    position: relative;
    background: var(--black);
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.tv-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tv-stand {
    width: 120px;
    height: 20px;
    background: linear-gradient(180deg, #3a3a3a, #1a1a1a);
    margin: 20px auto 0;
    border-radius: 0 0 10px 10px;
}

.phone-frame-section {
    background: var(--white-off);
}

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

.phone-mockup {
    display: flex;
    justify-content: center;
}

.iphone-frame {
    position: relative;
    width: 300px;
    background: linear-gradient(145deg, #1a1a1a, #000);
    border-radius: 50px;
    padding: 15px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.iphone-frame::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: var(--black);
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.iphone-screen {
    background: var(--black);
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.iphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-content .subtitle {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.phone-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.phone-content p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 30px;
}

.instagram-section {
    background: var(--black);
}

.instagram-section .section-title h2,
.instagram-section .section-title p {
    color: var(--white);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.reel-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
}

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

.reel-item:hover video {
    transform: scale(1.05);
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.reel-overlay i {
    color: var(--white);
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-choose-section {
    background: var(--white);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-card {
    background: var(--white);
    border: 2px solid rgba(196, 154, 71, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.choose-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.choose-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.choose-card-icon i {
    font-size: 32px;
    color: var(--white);
}

.choose-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.choose-card p {
    color: var(--gray);
    font-size: 15px;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--gold);
    position: absolute;
    top: 20px;
    left: 40px;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card p {
    font-size: 20px;
    font-style: italic;
    color: var(--black);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.testimonial-author-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author-info span {
    color: var(--gold);
    font-size: 14px;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-stars i {
    font-size: 20px;
}

.cta-section {
    background: space;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    color: var(--black);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-dark {
    background: var(--black);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-section .btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-section {
    background: var(--white-off);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 154, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay i {
    color: var(--white);
    font-size: 30px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white-off);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow);
}

.contact-info-card i {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 15px;
}

.contact-info-card a {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--black);
    border-radius: 20px;
    padding: 50px;
}

.contact-form-wrapper h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 30px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--black-lighter);
    border: 1px solid rgba(196, 154, 71, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer {
    background: var(--black);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(196, 154, 71, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-col h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a i {
    color: var(--gold);
    font-size: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-item i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 3px;
}

.footer-contact .contact-item strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 5px;
}

.footer-contact .contact-item p,
.footer-contact .contact-item a {
    color: var(--gray-light);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(196, 154, 71, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-light);
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: var(--gray-light);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.page-banner {
    background: var(--black);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C49A47" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}

.page-banner h1 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.breadcrumb a,
.breadcrumb span {
    color: var(--gray-light);
    font-size: 16px;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span.active {
    color: var(--gold);
}

.treatment-content {
    padding: 80px 0;
}

.treatment-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.treatment-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--black);
}

.treatment-main h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--gold);
}

.treatment-main p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

.treatment-main ul {
    margin: 20px 0;
    padding-left: 20px;
}

.treatment-main ul li {
    color: var(--gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.treatment-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 0;
}

.treatment-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--white-off);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.treatment-list a {
    display: block;
    padding: 12px 15px;
    color: var(--black);
    font-size: 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: var(--transition);
}

.treatment-list a:hover,
.treatment-list a.active {
    background: var(--gold);
    color: var(--white);
}

.booking-widget {
    background: var(--black);
    text-align: center;
}

.booking-widget h4 {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.booking-widget p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.booking-widget .phone {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .services-grid,
    .choose-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-items,
    .nav-right {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-items.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--black);
        padding: 30px;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-items.active > a,
    .nav-items.active .dropdown > a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(196, 154, 71, 0.2);
        display: block;
    }
    
    .dropdown-menu,
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 100%;
        background: var(--black-light);
        padding: 15px;
        margin-top: 10px;
        grid-template-columns: 1fr;
    }
    
    .dropdown.active .dropdown-menu,
    .mega-dropdown.active .mega-menu {
        display: block;
    }
    
    .mega-menu-column {
        border-right: none;
        padding: 10px 0;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .welcome-grid,
    .tv-frame-grid,
    .phone-frame-grid,
    .contact-grid,
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .choose-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .services-grid,
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid,
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sticky-social-bar {
        display: none;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid,
    .reels-grid {
        grid-template-columns: 1fr;
    }
    
    .iphone-frame {
        width: 250px;
    }
}
