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

:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #E5C866;
    --dark-bg: #1A1A1A;
    --dark-header: #2C2C2C;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F5F5F0;
    --bg-offwhite: #FAFAF5;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.15);
    --shadow-hover: rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
    position: relative;
    margin: 0;
    padding: 0;
    scroll-padding-top: 80px;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
}

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

@media (max-width: 640px) {
    .container {
        padding: 0 6px;
    }
}

/* Main Header */
.main-header {
    background: var(--dark-bg);
    padding: 15px 0;
    color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    overflow: visible;
}

.main-header.visible {
    transform: translateY(0);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    overflow: visible;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    flex-shrink: 0;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.logo-text {
    display: inline-block;
}

.logo-s {
    color: var(--gold);
    font-weight: 700;
}

.header-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}

.icon-small {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.header-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    color: var(--white);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.social-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

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

.social-link:hover .social-icon-img {
    opacity: 0.7;
    transform: scale(1.1);
    transition: opacity 0.3s, transform 0.3s;
}


.logo {
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.logo-text {
    display: inline-block;
}

.logo-s {
    color: var(--gold);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('bannerhero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    margin: 0;
    margin-top: 0;
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

.hero-text-content {
    position: relative;
    z-index: 4;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero-image-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInImage 0.8s ease-out 0.2s forwards;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
}

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

.hero-script {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

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

.hero-btn {
    padding: 15px 35px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.hero-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.hero-btn.primary {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
}

.hero-btn.primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-offwhite);
    position: relative;
    z-index: 1;
    margin-top: 0;
    scroll-margin-top: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 500px;
    align-self: start;
}

.about-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    box-shadow: 0 20px 60px var(--shadow);
    display: block;
    border-radius: 10px;
}

.about-text-wrapper {
    padding: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: start;
}

.section-script {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 600;
    display: block;
}

.section-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    line-height: 1.3;
}

.experience-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.about-text {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.5;
}

.about-text strong {
    color: var(--gold-dark);
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.stat-box:has(.stat-content:only-child) {
    justify-content: center;
    text-align: center;
}

.stat-icon {
    width: 45px;
    height: 45px;
    color: var(--gold);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Development Section */
.development {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
}

.development-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.development-image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.development-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    object-fit: cover;
    display: block;
}

.development-text-wrapper {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.development-text {
    margin-bottom: 30px;
}

.development-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.development-text strong {
    color: var(--gold-dark);
    font-weight: 600;
}

.mentor-info {
    margin-top: 30px;
}

.mentor-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--bg-offwhite);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 4px solid var(--gold);
}

.mentor-badge strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.mentor-badge p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--bg-offwhite);
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.location-text-wrapper {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}


.location-text {
    margin-bottom: 30px;
}

.location-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.location-text strong {
    color: var(--gold-dark);
    font-weight: 600;
}

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

.location-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--bg-offwhite);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.info-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-icon svg {
    width: 100%;
    height: 100%;
}

.info-text {
    flex: 1;
}

.info-text strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--text-light);
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.location-image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.location-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    display: block;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-offwhite);
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
    line-height: 1.8;
}

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

.service-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.service-icon {
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 1;
    scroll-margin-top: 80px;
}

.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.portfolio-image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.portfolio-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
    object-fit: cover;
    display: block;
}

.portfolio-text-wrapper {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.portfolio-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.portfolio-text {
    margin-bottom: 20px;
}

.portfolio-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}


/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
    z-index: 1;
    scroll-margin-top: 80px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0;
    padding: 25px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    border-radius: 15px;
    color: var(--gold);
    line-height: 1.6;
}

.cta-highlight p {
    margin: 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.cta-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-info p {
    margin: 10px 0;
    opacity: 0.9;
    font-size: 1rem;
}

.cta-info strong {
    color: var(--gold);
}

.cta-social {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.cta-social-link svg.cta-social-icon {
    width: 28px;
    height: 28px;
    color: var(--white);
    transition: color 0.3s ease;
}

.cta-social-link:hover svg.cta-social-icon {
    color: var(--dark-bg);
}

/* Floating Booking Button */
.floating-booking-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    min-width: 60px;
    height: 60px;
    padding: 0 18px;
    background: var(--gold);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

.floating-btn-label {
    color: var(--dark-bg);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.floating-booking-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}


.floating-btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: var(--gold);
    animation: pulse 2s infinite;
    z-index: -1;
}

.floating-booking-btn.no-pulse .floating-btn-pulse {
    animation: none;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    clear: both;
}

.footer p {
    margin: 8px 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-location {
    font-size: 0.85rem !important;
    opacity: 0.6 !important;
    margin-top: 15px !important;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.scroll-animate.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease-in, transform 0.4s ease-in;
}

/* Hero section não deve ter animação */
.hero,
.hero-content-wrapper,
.hero-text-content {
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content,
    .development-content,
    .location-content,
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper,
    .development-image-wrapper,
    .location-image-wrapper,
    .portfolio-image-wrapper {
        order: -1;
    }

    .about-text-wrapper,
    .development-text-wrapper,
    .location-text-wrapper,
    .portfolio-text-wrapper {
        order: 1;
    }


    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .location-image {
        height: auto;
    }

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

@media (max-width: 640px) {
    body {
        scroll-padding-top: 60px;
    }

    .about,
    .development,
    .location,
    .services,
    .portfolio,
    .cta {
        scroll-margin-top: 60px;
    }

    .main-header {
        padding: 8px 0;
        overflow: visible;
    }

    .main-header .container {
        padding: 0 6px;
    }

    .header-content {
        flex-direction: row;
        gap: 4px;
        justify-content: space-between;
        align-items: center;
        overflow: visible;
        flex-wrap: nowrap;
        width: 100%;
    }

    .header-left {
        flex-direction: row;
        gap: 4px;
        align-items: center;
        flex: 0 1 auto;
        min-width: 0;
        overflow: visible;
        flex-shrink: 1;
        max-width: 40%;
    }

    .header-right {
        flex-direction: row;
        gap: 3px;
        align-items: center;
        flex-shrink: 0;
        overflow: visible;
        flex: 1 0 auto;
        min-width: 0;
        justify-content: flex-end;
    }

    .logo {
        flex-shrink: 1;
    }

    .logo-text {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: visible;
    }

    .header-contact {
        display: none;
    }

    .nav-links {
        gap: 2px;
        flex-wrap: nowrap;
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        min-width: 0;
    }

    .nav-links li {
        flex-shrink: 0;
    }

    .nav-links a {
        font-size: 0.52rem;
        padding: 3px 3px;
        white-space: nowrap;
        display: block;
        overflow: visible;
    }

    .header-social {
        gap: 6px;
    }

    .social-link,
    .social-icon-img {
        width: 18px;
        height: 18px;
    }


    .icon-small {
        width: 12px;
        height: 12px;
    }

    .hero {
        min-height: calc(100vh - 60px);
        padding: 20px 0;
        padding-top: 80px;
        background-attachment: scroll;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content-wrapper {
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-text-content {
        text-align: center;
        width: 100%;
    }

    .hero-script {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .development-content,
    .location-content,
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 30px;
        align-items: start;
    }

    .about-image-wrapper {
        max-width: 100%;
        justify-content: flex-start;
    }

    .about-image {
        max-height: 500px;
    }

    .about-image-wrapper,
    .development-image-wrapper,
    .location-image-wrapper,
    .portfolio-image-wrapper {
        order: -1;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .about-text-wrapper,
    .development-text-wrapper,
    .location-text-wrapper,
    .portfolio-text-wrapper {
        order: 1;
    }


    .about,
    .development,
    .location,
    .services,
    .portfolio,
    .cta {
        padding: 50px 0;
        padding-top: 70px;
    }

    .section-script {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .about-content {
        grid-template-columns: 1fr 1.1fr;
        gap: 25px;
    }

    .about-image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    .about-text-wrapper {
        padding: 0;
    }

    .about-text p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .development-image-wrapper {
        width: 70%;
        margin: 0 auto;
    }

    .development-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .location-image-wrapper {
        order: -1;
        margin-bottom: 20px;
        width: 100%;
    }

    .location-image {
        height: auto;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .portfolio-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .portfolio-image {
        width: auto;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .about-text p,
    .development-text p,
    .portfolio-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .about-text,
    .development-text,
    .portfolio-text {
        margin-bottom: 20px;
    }

    .cta {
        background-attachment: scroll;
        padding: 50px 0;
        padding-top: 65px;
    }

    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-highlight {
        padding: 15px;
        margin-bottom: 25px;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn {
        justify-content: center;
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .cta-info {
        margin-top: 30px;
        padding-top: 25px;
        font-size: 0.85rem;
    }

    .cta-social {
        gap: 15px;
        margin-top: 25px;
        padding-top: 25px;
    }

    .cta-social-link {
        width: 45px;
        height: 45px;
    }

    .cta-social-icon {
        width: 24px;
        height: 24px;
    }

    .cta-social-link svg.cta-social-icon {
        width: 24px;
        height: 24px;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-icon-img {
        width: 40px;
        height: 40px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-text {
        font-size: 0.9rem;
    }

    .info-item {
        gap: 15px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-text {
        font-size: 0.9rem;
    }

    .footer {
        padding: 30px 0;
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    body {
        scroll-padding-top: 55px;
    }

    .about,
    .development,
    .location,
    .services,
    .portfolio,
    .cta {
        scroll-margin-top: 55px;
    }

    .container {
        padding: 0 4px;
    }

    .main-header {
        padding: 6px 0;
        overflow: visible;
    }

    .main-header .container {
        padding: 0 4px;
    }

    .header-content {
        gap: 3px;
        overflow: visible;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .header-left {
        gap: 3px;
        overflow: visible;
        flex: 0 1 auto;
        flex-shrink: 1;
        max-width: 35%;
        min-width: 0;
    }

    .header-right {
        gap: 2px;
        overflow: visible;
        flex: 1 0 auto;
        flex-shrink: 0;
        min-width: 0;
        justify-content: flex-end;
    }

    .logo {
        flex-shrink: 1;
    }

    .logo-text {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: visible;
    }

    .nav-links {
        gap: 1px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .nav-links li {
        flex-shrink: 0;
    }

    .nav-links a {
        font-size: 0.48rem;
        padding: 2px 2px;
        white-space: nowrap;
        overflow: visible;
    }


    .social-link,
    .social-icon-img {
        width: 16px;
        height: 16px;
    }


    .hero {
        min-height: calc(100vh - 50px);
        padding: 15px 0;
        padding-top: 70px;
    }

    .hero-content-wrapper {
        padding: 0;
    }

    .hero-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-script {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .section-script {
        font-size: 1rem;
    }

    .section-description {
        font-size: 0.85rem;
    }

    .about-text p,
    .development-text p,
    .portfolio-text p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .service-icon {
        width: 140px;
        height: 140px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .location-image {
        height: auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-image-wrapper {
        max-width: 70%;
        width: 70%;
        margin: 0 auto;
        justify-content: center;
    }

    .about-image {
        max-height: 350px;
    }

    .development-image-wrapper {
        width: 60%;
    }

    .portfolio-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .portfolio-image {
        max-width: 80%;
        width: auto;
    }

    .about-image,
    .development-image,
    .portfolio-image {
        width: 100%;
        max-width: 100%;
    }

    .about,
    .development,
    .location,
    .services,
    .portfolio,
    .cta {
        padding-top: 65px;
    }

    .floating-booking-btn {
        bottom: 20px;
        right: 20px;
        min-width: 60px;
        height: 60px;
        padding: 0 15px;
        border-radius: 30px;
    }

    .floating-btn-pulse {
        border-radius: 30px;
    }

    .floating-btn-label {
        font-size: 0.75rem;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .cta-buttons {
        gap: 12px;
    }

    .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.7rem;
        padding: 4px 6px;
    }
}
