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

:root {
    /* Color Palette */
    --gold-primary: #C29B52;
    --gold-light: #D4AF6A;
    --gold-dark: #A67C3A;
    --blue-primary: #0B1F35;
    --blue-light: #1A3A5C;
    --blue-dark: #051220;
    --black-satin: #0A0A0A;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-dark: #333333;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black-satin);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194, 155, 82, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    transition: var(--transition-smooth);
}

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

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--gold-primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(11, 31, 53, 0.8) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(11, 31, 53, 0.8) 100%),
        url('hero-bg-futuristic.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--gold-primary), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--gold-light), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--gold-primary), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--gold-light), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--gold-primary), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particlesFloat 20s linear infinite;
    opacity: 0.3;
}

@keyframes particlesFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-100px) translateX(100px); }
    66% { transform: translateY(-200px) translateX(-100px); }
    100% { transform: translateY(-300px) translateX(200px); }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(194, 155, 82, 0.1) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(11, 31, 53, 0.2) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(194, 155, 82, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--blue-dark);
    box-shadow: 0 10px 30px rgba(194, 155, 82, 0.3);
}

.cta-button.primary::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-smooth);
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(194, 155, 82, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold-primary);
}

.cta-button.secondary:hover {
    background: var(--gold-primary);
    color: var(--blue-dark);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

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

.floating-card {
    position: absolute;
    background: rgba(11, 31, 53, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 155, 82, 0.3);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.floating-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.floating-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 200px;
    right: 80px;
    animation: float2 8s ease-in-out infinite;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

.floating-card:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px rgba(194, 155, 82, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--black-satin) 100%);
}

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

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--gray-light);
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(11, 31, 53, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(194, 155, 82, 0.2);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 500;
}

.vision-card {
    background: rgba(11, 31, 53, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 155, 82, 0.3);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vision-card h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-light);
}

/* Services Section */
.services {
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(11, 31, 53, 0.9) 100%),
        url('services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(11, 31, 53, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(194, 155, 82, 0.2);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 155, 82, 0.1), transparent);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 25px 50px rgba(194, 155, 82, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--blue-dark);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature {
    background: rgba(194, 155, 82, 0.2);
    color: var(--gold-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(194, 155, 82, 0.3);
}

/* Industries Section */
.industries {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.industry-badge {
    background: rgba(194, 155, 82, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.industry-badge:hover {
    background: var(--gold-primary);
    color: var(--blue-dark);
    transform: translateY(-5px);
}

.industry-badge i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.industry-badge:hover i {
    color: var(--blue-dark);
}

.industry-badge span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Portfolio Section */
.portfolio {
    background: var(--black-satin);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.portfolio-item {
    background: rgba(11, 31, 53, 0.6);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(194, 155, 82, 0.2);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(194, 155, 82, 0.2);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.portfolio-placeholder i {
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.7;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.portfolio-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(194, 155, 82, 0.2);
    color: var(--gold-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(194, 155, 82, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--black-satin) 50%, var(--blue-primary) 100%);
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 40px;
}

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

/* Footer */
.footer {
    background: var(--blue-dark);
    border-top: 1px solid rgba(194, 155, 82, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--gray-light);
    line-height: 1.6;
}

.footer-contact h4,
.footer-social h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--gold-primary);
    width: 20px;
}

.contact-item a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--gold-primary);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(194, 155, 82, 0.2);
    border: 1px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--blue-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(194, 155, 82, 0.2);
    color: var(--gray-light);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: var(--transition-bounce);
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-logo-img {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .vision-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .industry-badge {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .industry-badge i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .industry-badge span {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }
    
    .portfolio-item {
        margin: 0 5px;
    }
    
    .portfolio-content {
        padding: 25px 20px;
    }
    
    .portfolio-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .portfolio-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-description {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .floating-card {
        padding: 15px;
        border-radius: 15px;
    }
    
    .floating-card i {
        font-size: 2rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
    
    .card-1 {
        top: 20px;
        left: 10px;
    }
    
    .card-2 {
        top: 120px;
        right: 10px;
    }
    
    .card-3 {
        bottom: 40px;
        left: 30px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px 0;
        --container-padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
        height: 65px;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .hero {
        min-height: 85vh;
        padding-top: 65px;
    }
    
    .hero-container {
        padding: 0 12px;
    }
    
    .hero-logo-img {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 5px;
    }
    
    .about-description {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .about-stats {
        max-width: 250px;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .vision-card {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .vision-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .vision-card p {
        font-size: 1rem;
    }
    
    .services-grid {
        padding: 0 5px;
    }
    
    .service-card {
        padding: 25px 15px;
        margin: 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-features {
        gap: 8px;
    }
    
    .feature {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
    }
    
    .industry-badge {
        padding: 20px 12px;
        margin: 0;
    }
    
    .industry-badge i {
        font-size: 1.8rem;
    }
    
    .industry-badge span {
        font-size: 0.95rem;
    }
    
    .portfolio-grid {
        padding: 0 5px;
    }
    
    .portfolio-item {
        margin: 0;
    }
    
    .portfolio-content {
        padding: 20px 15px;
    }
    
    .portfolio-content h3 {
        font-size: 1.1rem;
    }
    
    .portfolio-content p {
        font-size: 0.9rem;
    }
    
    .portfolio-tags {
        gap: 6px;
    }
    
    .tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-buttons {
        padding: 0 15px;
    }
    
    .cta-button {
        max-width: 260px;
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .footer-description {
        padding: 0 15px;
    }
    
    .floating-card {
        padding: 12px;
    }
    
    .floating-card i {
        font-size: 1.8rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .card-1 {
        top: 15px;
        left: 5px;
    }
    
    .card-2 {
        top: 100px;
        right: 5px;
    }
    
    .card-3 {
        bottom: 30px;
        left: 20px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .cta-button,
    .nav-link,
    .social-link,
    .contact-item a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card,
    .portfolio-item,
    .industry-badge {
        transition: transform 0.2s ease;
    }
    
    .service-card:active,
    .portfolio-item:active,
    .industry-badge:active {
        transform: scale(0.98);
    }
}


/* Logo Luxury Animation Styles */
.logo-luxury-animation {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.animated-logo {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(194, 155, 82, 0.5));
    animation: logoFloat 6s ease-in-out infinite alternate;
}

.logo-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(194, 155, 82, 0.4) 0%, rgba(194, 155, 82, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 4;
}

.logo-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: 3;
    animation: logoCirclePulse 6s infinite alternate, logoCircleRotate 20s linear infinite;
}

.logo-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.logo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    height: 1px;
    top: 50%;
    left: 50%;
    transform-origin: center;
    opacity: 0.5;
}

.logo-line.line1 {
    width: 300px;
    transform: translate(-50%, -50%) rotate(0deg);
    animation: logoLineAnim 8s infinite alternate;
}

.logo-line.line2 {
    width: 250px;
    transform: translate(-50%, -50%) rotate(60deg);
    animation: logoLineAnim 8s infinite alternate-reverse;
    animation-delay: 1s;
}

.logo-line.line3 {
    width: 280px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation: logoLineAnim 8s infinite alternate;
    animation-delay: 2s;
}

@keyframes logoFloat {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes logoGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes logoCirclePulse {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

@keyframes logoLineAnim {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) rotate(var(--rotation)) scaleX(0.8);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) rotate(calc(var(--rotation) + 30deg)) scaleX(1.2);
    }
}

/* Hero section adjustments for logo animation */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Media queries for logo animation */
@media (max-width: 992px) {
    .logo-luxury-animation {
        width: 300px;
        height: 300px;
    }
    
    .animated-logo {
        width: 180px;
    }
    
    .logo-glow {
        width: 200px;
        height: 200px;
    }
    
    .logo-circle {
        width: 220px;
        height: 220px;
    }
    
    .logo-line.line1 {
        width: 240px;
    }
    
    .logo-line.line2 {
        width: 200px;
    }
    
    .logo-line.line3 {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .logo-luxury-animation {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .animated-logo {
        width: 150px;
    }
    
    .logo-glow {
        width: 180px;
        height: 180px;
    }
    
    .logo-circle {
        width: 200px;
        height: 200px;
    }
    
    .logo-line.line1 {
        width: 200px;
    }
    
    .logo-line.line2 {
        width: 180px;
    }
    
    .logo-line.line3 {
        width: 190px;
    }
}

@media (max-width: 480px) {
    .logo-luxury-animation {
        width: 200px;
        height: 200px;
    }
    
    .animated-logo {
        width: 120px;
    }
    
    .logo-glow {
        width: 150px;
        height: 150px;
    }
    
    .logo-circle {
        width: 160px;
        height: 160px;
    }
    
    .logo-line.line1 {
        width: 160px;
    }
    
    .logo-line.line2 {
        width: 140px;
    }
    
    .logo-line.line3 {
        width: 150px;
    }
}

