/* Variables & Root */
:root {
    --primary: #1F8496;
    /* New Brand Color */
    --primary-light: #2AABC1;
    --secondary: #000000;
    /* Black instead of Gold */
    --secondary-hover: #222222;
    --accent: #E84855;
    --bg-light: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 36, 99, 0.15);
}

/* Reset & Typgraphy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #333333, #000000);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
}

.btn-primary-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo h2 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: -5px;
    transition: var(--transition);
}

.logo[href]:hover h2 {
    opacity: 0.8;
}

.logo h2 span {
    color: var(--secondary);
}

.logo p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary-outline) {
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn-primary-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary-outline):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.nav-whatsapp-mobile {
    display: none;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e7f0 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(10, 36, 99, 0.05) 50%, transparent 100%);
    z-index: 0;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(10, 36, 99, 0.1);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(10, 36, 99, 0.2);
}

.hero h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--secondary);
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    max-width: 500px;
}

.hero-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top left;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
    display: block;
}


.trust-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid var(--white);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.trust-text h4 {
    color: var(--primary);
    margin-bottom: 2px;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--secondary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(10, 36, 99, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
    color: var(--text-dark);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-content h2 span {
    color: var(--primary);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 500;
}

.about-content>p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-dark);
}

.expertise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.expertise-item i {
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.contact-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.contact-container {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--secondary);
}

.contact-info>p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(10, 36, 99, 0.05);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-block h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.info-block p,
.info-block a {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.glass-panel {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.glass-panel h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #E1E7F0;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Footer */
footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 80px 0 20px;
    border-top: 1px solid #eee;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: -5px;
}

.footer-brand h2 span {
    color: var(--secondary);
}

.footer-brand p:not(.footer-desc) {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-dark);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {

    .hero-container,
    .about-container,
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 60px;
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .hero-main-img {
        height: 400px;
        object-position: top left;
    }

    .about-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-main-img {
        height: 350px;
    }

    .contact-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .info-blocks {
        align-items: center;
        width: 100%;
    }

    .info-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: flex !important;
    }

    .nav-whatsapp-mobile {
        display: flex !important;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: auto;
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid #eee;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-links .btn-primary-outline {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-content {
        text-align: center;
        padding: 0 10px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-content h2 span {
        display: block;
    }

    .trust-card {
        left: 20px !important;
        right: 20px !important;
        bottom: -30px;
        padding: 12px 15px;
        transform: none;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        max-width: 250px;
        margin: 0 auto;
    }

    .trust-card i {
        font-size: 1.2rem;
    }

    .trust-card h4 {
        font-size: 1rem;
    }

    .trust-card p {
        font-size: 0.8rem;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }

    .expertise-item {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 4px;
        z-index: 5;
    }

    .experience-badge .years {
        font-size: 1.8rem;
    }



    .glass-panel {
        padding: 30px 20px;
    }

    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Map Section */
.map-section {
    padding: 60px 0 100px;
    background: var(--bg-light);
}

.map-wrapper {
    padding: 20px !important;
    overflow: hidden;
}

.map-wrapper iframe {
    border-radius: 15px;
    display: block;
}

/* Premium Communication Dock */
.communication-dock {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.dock-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dock-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px;
    border-radius: 100px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 44px;
    height: 44px;
    overflow: hidden;
    white-space: nowrap;
}

.dock-item i {
    font-size: 1.25rem;
    min-width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dock-label {
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.dock-item:hover {
    max-width: 250px;
    gap: 12px;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dock-item.whatsapp:hover {
    color: #25D366;
}

.dock-item:hover .dock-label {
    opacity: 1;
    transform: translateX(0);
}

.dock-separator {
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 5px;
}

.communication-dock:hover .dock-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .communication-dock {
        display: none;
    }
}