/* WhatsApp Styles */
.whatsapp a {
    background-color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 0.8rem 2.5rem;
    color: #ffffff;
    border-radius: 25px;
}

.whatsapp i {
    font-size: 1.5rem;
    color: #ffffff;
}

/* Top Navigation */
.top-nav {
    background-color: var(--primary);
    color: white;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10rem;
}

.top-nav-content p {
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.top-nav-content a {
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.top-nav-content i {
    color: var(--light);
    font-size: 0.9rem;
}

/* Header - Fixed the sticky navbar */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10rem;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(152, 135, 112, 0.1);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: var(--primary);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 1024px) {

    .top-nav-content,
    .navbar {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .top-nav {
        display: none;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 1rem 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 2rem;
        display: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.75rem 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .top-nav {
        display: none;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .top-nav-content {
        padding: 0.8rem;
    }

    .top-nav-content a {
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .navbar {
        padding: 0.8rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        width: 100%;
        right: -100%;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .whatsapp a {
        width: 55px;
        height: 55px;
    }

    .whatsapp a i {
        font-size: 1.6rem !important;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .top-nav-content {
        padding: 0.5rem;
    }

    .navbar {
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.1rem;
    }

    .menu-toggle span {
        width: 22px;
    }
}


.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0 2.5rem;
    border-bottom: 1px solid rgba(236, 240, 241, 0.15);
}

.footer-section h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

/* Company Info Section */
.footer-logo h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-logo p {
    font-size: 1rem;
    color: #bdc3c7;
    font-weight: 500;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Quick Links Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    border-radius: 4px;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(6px);
    background: rgba(212, 175, 55, 0.08);
    padding-left: 0.8rem;
}

.footer-links a::before {
    content: '▶';
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(-3px);
}

/* Contact Section */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: 0.2rem;
    flex-shrink: 0;
    text-align: center;
}

.contact-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    word-break: break-word;
}

.contact-value:hover {
    color: var(--secondary);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-description {
        text-align: left;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        font-size: 0.9rem;
    }
}



/* Breadcrumb */
.breadcrumb {
    background: var(--gray-100);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.9rem;
}

.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

.breadcrumb-separator {
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0 1rem;
    }

    .breadcrumb-list {
        flex-wrap: wrap;
        gap: 0.3rem;
        font-size: 0.85rem;
    }

    .breadcrumb-list li {
        white-space: nowrap;
    }
}



/* Contact Section */
.contact {
    padding: clamp(3rem, 8vw, 8rem) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23988770' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-top: clamp(2rem, 4vw, 3rem);
}

/* Contact Info */
.contact-info {
    animation: slideInLeft 0.8s ease-out;
}

.contact-info h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--gray-600);
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    border: 1px solid rgba(152, 135, 112, 0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-details {
    flex: 1;
    min-width: 0;
}

.info-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
}

.info-value a {
    color: inherit;
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
    word-break: break-all;
}

.info-value a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    border: 1px solid rgba(152, 135, 112, 0.1);
    animation: slideInRight 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
}

.contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(0.7rem, 2vw, 0.9rem);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: all 0.3s ease;
    background: var(--light);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(152, 135, 112, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: clamp(90px, 12vw, 110px);
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: clamp(0.9rem, 2.5vw, 1rem) 2rem;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: clamp(0.95rem, 2.2vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn::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: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(152, 135, 112, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 1.2rem;
    }

    .info-item {
        padding: 1rem;
        gap: 0.75rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .section-badge {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-form {
        padding: 0.8rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .info-icon {
        margin-bottom: 0.5rem;
    }

    .info-value a {
        word-break: break-word;
    }

    .form-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 320px) {
    .contact-container {
        padding: 0 0.75rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}


/* Loading state for form */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}