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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #e0e0e0;
    overflow-x: hidden;
}

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

/* Shiny Text Effect */
.shine-effect {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #555 0%, #f5f5f5 50%, #555 100%);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Banner Section */
.full-screen {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/diana-banner.jpg');
    background-size: cover;
    background-position: center;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Introduction Section - Luxury Version */
.luxury-section {
    position: relative;
    overflow: hidden;
}

.luxury-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(40, 40, 40, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.luxury-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #555, #f5f5f5, #aaa, #555);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: luxuryShine 8s linear infinite;
    position: relative;
}

.luxury-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #555, #f5f5f5);
    animation: expandLine 3s ease-in-out infinite alternate;
}

@keyframes expandLine {
    0% { width: 100px; }
    100% { width: 200px; }
}

@keyframes luxuryShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.luxury-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #e0e0e0;
    position: relative;
    padding-left: 20px;
    border-left: 1px solid rgba(245, 245, 245, 0.3);
    animation: fadeInUp 1.5s ease-out;
}

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

.intro-images {
    flex: 1;
    display: flex;
    gap: 30px;
    min-width: 300px;
}

.luxury-card {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    border: 1px solid rgba(245, 245, 245, 0.2);
}

.luxury-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 245, 245, 0.3);
    border: 1px solid rgba(245, 245, 245, 0.4);
}

.luxury-image {
    height: 560px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

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

.diana-image {
    background-image: url('../assets/diana-1.jpg');
}

.brands-image {
    background-image: url('../assets/diana-1.jpg');
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 10%, transparent 60%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.luxury-card:hover .image-overlay {
    opacity: 0.4;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(245, 245, 245, 0.2) 100%);
}

.luxury-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(245, 245, 245, 0.1), transparent);
    transform: rotate(45deg);
    animation: luxuryCardShine 6s infinite;
    transition: all 0.6s ease;
    pointer-events: none;
}

.luxury-card:hover::after {
    animation-duration: 3s;
}

@keyframes luxuryCardShine {
    0% { transform: rotate(45deg) translateX(-150%); }
    100% { transform: rotate(45deg) translateX(150%); }
}

.brand-circles {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 60px;
    perspective: 1000px;
}

.luxury-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #1a1a1a, #111);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(170, 170, 170, 0.2);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    animation: floatAnimation 6s ease-in-out infinite alternate;
    border: 1px solid rgba(245, 245, 245, 0.3);
}

.luxury-circle:nth-child(1) {
    animation-delay: 0s;
}

.luxury-circle:nth-child(2) {
    animation-delay: 0.8s;
}

.luxury-circle:nth-child(3) {
    animation-delay: 1.6s;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(10deg); }
    100% { transform: translateY(0) rotateY(0deg); }
}

.luxury-circle:hover {
    transform: scale(1.1) translateY(-10px) rotateY(20deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(245, 245, 245, 0.4), 0 0 15px rgba(170, 170, 170, 0.2);
    border: 1px solid rgba(245, 245, 245, 0.5);
}

.circle-inner {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(145deg, #222, #181818);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.white-bg {
    background: #ffffff;
}

.brand-logo {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    transition: transform 0.5s ease;
    z-index: 5;
}

.luxury-circle:hover .brand-logo {
    transform: scale(1.1);
}

.luxury-circle:hover .circle-inner {
    background: #ffffff;
    box-shadow: inset 0 0 15px rgba(200, 200, 200, 0.5);
}

.circle-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.2), transparent);
    transform: rotate(45deg);
    animation: luxuryShineEffect 5s infinite;
    pointer-events: none;
}

.luxury-circle:hover .circle-inner::before {
    animation-duration: 3s;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.3), transparent);
}

@keyframes luxuryShineEffect {
    0% { transform: rotate(45deg) translateX(-150%); }
    100% { transform: rotate(45deg) translateX(150%); }
}

.brand-circle h3 {
    font-size: 1.3rem;
    color: #f5f5f5;
    z-index: 1;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.luxury-circle:hover h3 {
    transform: scale(1.1);
    text-shadow: 0 2px 10px rgba(170, 170, 170, 0.7);
}

/* Gallery Sections */
.gallery-section {
    position: relative;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Lifestyle Gallery */
#lifestyle .gallery-item:nth-child(1) { background-image: url('../assets/lifestyle-1.jpg'); }
#lifestyle .gallery-item:nth-child(2) { background-image: url('../assets/lifestyle-1.jpg'); }
#lifestyle .gallery-item:nth-child(3) { background-image: url('../assets/lifestyle-1.jpg'); }
#lifestyle .gallery-item:nth-child(4) { background-image: url('../assets/lifestyle-1.jpg'); }
#lifestyle .gallery-item:nth-child(5) { background-image: url('../assets/lifestyle-1.jpg'); }
#lifestyle .gallery-item:nth-child(6) { background-image: url('../assets/lifestyle-1.jpg'); }

/* Yoga Gallery */
#yoga .gallery-item:nth-child(1) { background-image: url('../assets/youga-1.jpg'); }
#yoga .gallery-item:nth-child(2) { background-image: url('../assets/youga-1.jpg'); }
#yoga .gallery-item:nth-child(3) { background-image: url('../assets/youga-1.jpg'); }
#yoga .gallery-item:nth-child(4) { background-image: url('../assets/youga-1.jpg'); }
#yoga .gallery-item:nth-child(5) { background-image: url('../assets/youga-1.jpg'); }
#yoga .gallery-item:nth-child(6) { background-image: url('../assets/youga-1.jpg'); }

/* Family Gallery */
#family .gallery-item:nth-child(1) { background-image: url('../assets/family-1.jpg'); }
#family .gallery-item:nth-child(2) { background-image: url('../assets/family-1.jpg'); }
#family .gallery-item:nth-child(3) { background-image: url('../assets/family-1.jpg'); }
#family .gallery-item:nth-child(4) { background-image: url('../assets/family-1.jpg'); }
#family .gallery-item:nth-child(5) { background-image: url('../assets/family-1.jpg'); }
#family .gallery-item:nth-child(6) { background-image: url('../assets/family-1.jpg'); }

.slogan {
    text-align: center;
    margin-top: 40px;
}

.slogan p {
    font-size: 1.5rem;
    font-style: italic;
    color: #e0e0e0;
    position: relative;
    display: inline-block;
}

.slogan p::before, .slogan p::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    background: linear-gradient(90deg, transparent, #888, transparent);
    top: 50%;
}

.slogan p::before {
    left: -70px;
}

.slogan p::after {
    right: -70px;
}

/* Brands Section */
.brands-section {
    position: relative;
    overflow: visible;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.fancy-title {
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.fancy-title::before,
.fancy-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.5), transparent);
}

.fancy-title::before {
    left: -150px;
    animation: expandFromLeft 3s ease-in-out infinite alternate;
}

.fancy-title::after {
    right: -150px;
    animation: expandFromRight 3s ease-in-out infinite alternate;
}

@keyframes expandFromLeft {
    0% { width: 100px; }
    100% { width: 150px; }
}

@keyframes expandFromRight {
    0% { width: 100px; }
    100% { width: 150px; }
}

.brand-details {
    display: flex;
    flex-direction: column;
    gap: 150px;
}

.brand-item {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
    perspective: 1000px;
}

.brand-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -75px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.2), transparent);
}

.brand-image-card {
    flex: 1;
    min-width: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: floatBrandImage 8s ease-in-out infinite alternate;
}

@keyframes floatBrandImage {
    0% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(3deg); }
    100% { transform: translateY(0) rotateY(0deg); }
}

.brand-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 245, 245, 0.05);
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(245, 245, 245, 0.1);
}

.brand-image-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 245, 245, 0.1);
    border: 1px solid rgba(245, 245, 245, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.brand-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.brand-image-wrapper:hover .brand-image {
    transform: scale(1.05);
}

.brand1-image { background-image: url('../assets/brand-1.png'); }
.brand2-image { background-image: url('../assets/brand-2.png'); }
.brand3-image { background-image: url('../assets/brand-1.png'); }

.shine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(245, 245, 245, 0.05) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

.brand-image-wrapper::after {
    content: '';
    position: absolute;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0) 40%
    );
    animation: brandShine 8s linear infinite;
    transform: rotate(45deg);
    z-index: 3;
    pointer-events: none;
}

@keyframes brandShine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.brand-content {
    flex: 1;
    min-width: 300px;
    align-self: center;
    transform: translateZ(20px);
}

.brand-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #555, #f5f5f5, #aaa, #555);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: brandTitleShine 6s linear infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes brandTitleShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #555, #f5f5f5);
    animation: titleLineExpand 3s ease-in-out infinite alternate;
}

@keyframes titleLineExpand {
    0% { width: 50px; }
    100% { width: 100px; }
}

.brand-description {
    margin-bottom: 30px;
    line-height: 1.9;
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 90%;
}

.brand-gallery {
    width: 100%;
    margin-top: 50px;
}

.gallery-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #e0e0e0;
    text-align: center;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.3), transparent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateZ(0);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(245, 245, 245, 0.1);
    z-index: 2;
}

.portfolio-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    background-image: url('../assets/portfolio-1.jpg');
}

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

/* Enhanced button with shine effect */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #222, #444);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.shine-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.1), transparent);
    transform: rotate(45deg);
    animation: buttonShine 5s infinite;
    z-index: 1;
}

@keyframes buttonShine {
    0% { transform: rotate(45deg) translateX(-150%); }
    100% { transform: rotate(45deg) translateX(150%); }
}

.btn:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 245, 245, 0.1);
    background: linear-gradient(90deg, #333, #555);
    border: 1px solid rgba(245, 245, 245, 0.2);
}

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

.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .brand-item, .brand-item.reverse {
        flex-direction: column;
    }
    
    .brand-gallery {
        margin-top: 70px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .portfolio-image {
        height: 150px;
    }
    
    .fancy-title::before,
    .fancy-title::after {
        width: 60px;
    }
    
    .fancy-title::before {
        left: -80px;
    }
    
    .fancy-title::after {
        right: -80px;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 120px 0;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

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

/* For the last card (ADS) to span full width */
.services-grid .premium-card {
    grid-column: 1 / -1;
    margin-top: 50px;
}

/* Enhanced Service Cards */
.enhanced-card {
    background: linear-gradient(145deg, #161616, #0a0a0a);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(245, 245, 245, 0.05);
}

.enhanced-card::after {
    content: '';
    position: absolute;
    top: -120%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0) 40%
    );
    transform: rotate(45deg);
    animation: serviceCardShine 10s linear infinite;
    pointer-events: none;
}

@keyframes serviceCardShine {
    0% { transform: rotate(45deg) translateX(-150%); }
    100% { transform: rotate(45deg) translateX(150%); }
}

.enhanced-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 245, 245, 0.05);
    border: 1px solid rgba(245, 245, 245, 0.1);
}

.service-image-container {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.marketing-image { background-image: url('../assets/service-marketing.jpg'); }
.reels-image { background-image: url('../assets/service-reels.jpg'); }
.modeling-image { background-image: url('../assets/service-modeling.jpg'); }

.image-overlay-service {
    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.8) 100%);
    pointer-events: none;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #222, #111);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f5f5f5;
    border: 1px solid rgba(245, 245, 245, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.enhanced-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(245, 245, 245, 0.1);
}

.service-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f5f5f5;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #555, rgba(245, 245, 245, 0.5));
    transition: width 0.3s ease;
}

.enhanced-card:hover .service-title::after {
    width: 100%;
}

.service-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
    flex-grow: 1;
}

.service-link {
    color: #f5f5f5;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    opacity: 0.8;
    align-self: flex-start;
    position: relative;
    padding-bottom: 5px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #f5f5f5;
    transition: width 0.3s ease;
}

.service-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

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

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Premium ADS Card Styling */
.premium-card {
    background: linear-gradient(145deg, #151515, #080808);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(245, 245, 245, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(245, 245, 245, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

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

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 245, 245, 0.05);
    border: 1px solid rgba(245, 245, 245, 0.15);
}

.premium-content-wrapper {
    display: flex;
    min-height: 400px;
}

.premium-image-container {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.premium-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.ads-image {
    background-image: url('../assets/service-ads.jpg');
}

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

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.premium-content {
    flex: 0 0 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #333, #111);
    font-size: 2.5rem;
    color: #f5f5f5;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(245, 245, 245, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.premium-card:hover .premium-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 245, 245, 0.1);
}

.premium-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f5f5f5;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    background: linear-gradient(90deg, #555, #f5f5f5, #aaa, #555);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: premiumTitleShine 6s linear infinite;
}

@keyframes premiumTitleShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.premium-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #555, #f5f5f5);
    transition: width 0.5s ease;
}

.premium-card:hover .premium-title::after {
    width: 100%;
}

.premium-description {
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.premium-extra {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
    padding-left: 15px;
    border-left: 1px solid rgba(245, 245, 245, 0.2);
}

.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(90deg, #222, #333);
    color: #f5f5f5;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 1px solid rgba(245, 245, 245, 0.1);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.premium-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.1), transparent);
    transform: rotate(45deg);
    animation: premiumLinkShine 6s infinite;
    pointer-events: none;
}

@keyframes premiumLinkShine {
    0% { transform: rotate(45deg) translateX(-150%); }
    100% { transform: rotate(45deg) translateX(150%); }
}

.premium-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(245, 245, 245, 0.05);
    background: linear-gradient(90deg, #333, #444);
    border: 1px solid rgba(245, 245, 245, 0.2);
}

.premium-link i {
    transition: transform 0.3s ease;
}

.premium-link:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .premium-content-wrapper {
        flex-direction: column;
    }
    
    .premium-image-container {
        flex: 0 0 300px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Diana's Words Section */
.words-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.words-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(20, 20, 20, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.shiny-quote {
    position: relative;
    padding: 60px 40px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(10, 10, 10, 0.9));
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(245, 245, 245, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.shiny-quote:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 245, 245, 0.05);
    border: 1px solid rgba(245, 245, 245, 0.1);
}

.quote-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: radial-gradient(circle at 50% 50%, rgba(245, 245, 245, 0.1) 0%, transparent 60%);
    animation: pulsate 8s ease-in-out infinite alternate;
}

@keyframes pulsate {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.5); opacity: 0.3; }
}

.quote-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote-mark {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
}

.left-mark {
    align-self: flex-start;
    margin-right: auto;
    animation: floatLeft 6s ease-in-out infinite alternate;
}

.right-mark {
    align-self: flex-end;
    margin-left: auto;
    margin-top: 20px;
    animation: floatRight 7s ease-in-out infinite alternate;
}

@keyframes floatLeft {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(-5deg); }
}

@keyframes floatRight {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(5deg); }
}

.quote-mark i {
    font-size: 2.5rem;
    color: #555;
    position: relative;
    z-index: 1;
}

.quote-mark::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(50, 50, 50, 0.1) 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 0;
}

.animated-words {
    max-width: 800px;
    margin: 20px auto;
}

.main-quote, .secondary-quote {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 15px;
    color: #e0e0e0;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 0.3s forwards;
}

.secondary-quote {
    font-size: 1.2rem;
    color: #cccccc;
    animation-delay: 0.9s;
}

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

.word-highlight {
    position: relative;
    display: inline-block;
    color: #f5f5f5;
    font-weight: 500;
    padding: 0 4px;
    animation: wordPulse 5s ease-in-out infinite alternate;
    background: linear-gradient(90deg, #555, #f5f5f5, #aaa, #555);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: wordShine 8s linear infinite;
}

@keyframes wordShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.word-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #555, #f5f5f5);
    animation: wordLine 5s ease-in-out forwards;
}

@keyframes wordLine {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 100%; }
}

.quote-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.5s forwards;
}

.signature-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #555, transparent);
    margin-bottom: 15px;
    animation: expandSignature 1.5s ease-out 2s forwards;
}

@keyframes expandSignature {
    0% { width: 0; }
    100% { width: 120px; }
}

.quote-signature span {
    font-family: 'Dancing Script', cursive, 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #f5f5f5;
    opacity: 0.9;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #555, #f5f5f5, #aaa, #555);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: wordShine 6s linear infinite;
}

.shiny-quote::after {
    content: '';
    position: absolute;
    top: -250%;
    left: -250%;
    width: 600%;
    height: 600%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 20%,
        rgba(255, 255, 255, 0) 40%
    );
    transform: rotate(45deg);
    animation: quoteShine 15s linear infinite;
    pointer-events: none;
}

@keyframes quoteShine {
    0% { transform: rotate(45deg) translateX(-150%); }
    100% { transform: rotate(45deg) translateX(150%); }
}

@media (max-width: 768px) {
    .shiny-quote {
        padding: 40px 20px;
    }
    
    .main-quote, .secondary-quote {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    
    .secondary-quote {
        font-size: 1rem;
    }
    
    .quote-mark {
        width: 50px;
        height: 50px;
    }
    
    .quote-mark i {
        font-size: 2rem;
    }
    
    .quote-signature span {
        font-size: 1.5rem;
    }
}

/* Social Media Section */
.social-media-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    animation: shimmerBg 10s linear infinite;
    pointer-events: none;
}

@keyframes shimmerBg {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.social-intro, .social-cta {
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
}

.social-tagline, .social-cta p {
    font-size: 1.3rem;
    color: #d0d0d0;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 1.6;
}

.social-cta p {
    margin-top: 60px;
}

.social-intro .highlight, .social-cta .highlight {
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: transparent;
    background: linear-gradient(90deg, #555, #f5f5f5, #aaa, #555);
    background-size: 300% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: wordShine 6s linear infinite;
}

.social-container {
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.social-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-card {
    position: relative;
    width: 320px;
    height: 150px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateX(0) rotateY(0);
    transform-style: preserve-3d;
}

.card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at var(--x, center) var(--y, center), rgba(255, 255, 255, 0.1) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-card:hover .card-glow {
    opacity: 1;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.05);
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.social-card:hover .icon-container {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.08);
}

.social-card i {
    font-size: 1.8rem;
    transition: all 0.5s ease;
    color: #d0d0d0;
}

.social-card:hover i {
    transform: scale(1.15);
    color: #f5f5f5;
}

.social-content {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.social-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #d0d0d0, #f5f5f5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.social-handle {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.social-card:hover .social-name {
    background: linear-gradient(90deg, #f5f5f5, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
}

.social-card:hover .social-handle {
    color: #aaa;
}

.social-overlay {
    position: absolute;
    top: -250%;
    left: -250%;
    width: 600%;
    height: 600%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.02) 20%,
        rgba(255, 255, 255, 0) 40%
    );
    transform: rotate(45deg);
    z-index: 0;
    transition: all 0.5s ease;
}

.social-card:hover .social-overlay {
    animation: socialShine 1.5s ease-out;
}

@keyframes socialShine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.social-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-card span {
    font-size: 1.2rem;
    font-weight: 600;
}

.facebook { background: linear-gradient(145deg, #1877F2, #0A59C4); }
.instagram { background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); }
.tiktok { background: linear-gradient(45deg, #000000, #EE1D52, #69C9D0); }
.youtube { background: linear-gradient(145deg, #FF0000, #CC0000); }
.snapchat { background: linear-gradient(145deg, #FFFC00, #FFD100); }
.snapchat span, .snapchat i { color: #000; }
.whatsapp { background: linear-gradient(145deg, #25D366, #128C7E); }

/* Footer */
.luxury-footer {
    position: relative;
    padding: 80px 0 30px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95), rgba(0, 0, 0, 1));
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-shine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-branding {
    max-width: 400px;
}

.logo-container {
    position: relative;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 2.2rem;
    font-weight: 600;
    color: #f5f5f5;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #555, #f5f5f5, #aaa, #555);
    background-size: 300% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: wordShine 6s linear infinite;
}

.logo-underline {
    position: relative;
    width: 100%;
    height: 12px;
    margin-top: 5px;
    overflow: hidden;
}

.logo-underline span {
    position: absolute;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, transparent, #f5f5f5, transparent);
    top: 0;
    left: 0;
    animation: logoLineExpand 3s ease-out forwards;
}

@keyframes logoLineExpand {
    0% { width: 0; left: 50%; opacity: 0; }
    20% { opacity: 1; }
    100% { width: 100%; left: 0; opacity: 0.5; }
}

.footer-tagline {
    color: #888;
    font-size: 1rem;
    margin-top: 0;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

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

.footer-link {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #aaa, transparent);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #f5f5f5;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    color: #aaa;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.back-to-top a::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: all 0.5s ease;
}

.back-to-top a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top a:hover::before {
    animation: btnShine 1s ease-out;
}

@keyframes btnShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .footer-nav {
        align-items: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        justify-content: center;
    }
    
    .copyright {
        text-align: center;
        width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .brand-item {
        flex-direction: column;
    }
    
    .brand-item:nth-child(2) {
        flex-direction: column-reverse;
    }
    
    .brand-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .intro-content {
        flex-direction: column;
    }
    
    .brand-circles {
        gap: 30px;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .slogan p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .quote p {
        font-size: 1.1rem;
    }
}
