:root {
    --bg-main: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent: #f59e0b; /* Amber/Orange */
    --accent-hover: #d97706;
    --whatsapp: #25D366;
    --phone: #3b82f6;
    --radius: 16px;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../assets/img/hero-bg.png');
    background-size: cover;
    background-position: center 75%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.95) 0%, rgba(248, 250, 252, 0.6) 40%, transparent 70%);
}

.hero-content {
    max-width: 650px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(255,255,255,0.5);
    color: var(--text-main);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: #fff;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-3px);
}

/* Shape Divider */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-divider .shape-fill {
    fill: var(--bg-secondary);
}

/* Services / Features */
.features {
    background-color: var(--bg-secondary);
    padding: 80px 5%;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    color: var(--accent);
    margin-bottom: 60px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* 3D Tilt Card */
.tilt-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.tilt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, transparent 100%);
    border-radius: 24px;
    pointer-events: none;
}

.tilt-card .icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    transform: translateZ(30px);
}

.tilt-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateZ(20px);
}

.tilt-card p {
    color: var(--text-muted);
    transform: translateZ(10px);
}

/* Regions Section */
.regions {
    padding: 100px 5%;
    background-color: var(--bg-main);
    position: relative;
}

.regions-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.regions-text {
    flex: 1;
}

.regions-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.regions-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tag {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
}

.tag.highlight {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.regions-image {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    height: 400px;
}

.regions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.regions-image:hover img {
    transform: scale(1.05);
}

/* Reviews Section */
.reviews {
    background-color: var(--bg-secondary);
    padding: 100px 5%;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg-main);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border-left: 4px solid var(--accent);
}

.stars {
    color: var(--accent);
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.reviewer {
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 100px 5%;
    background-color: var(--bg-main);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 30px 20px;
    max-height: 200px;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s;
    position: relative;
}

.float-btn.whatsapp {
    background-color: var(--whatsapp);
    animation: pulse-wa 2s infinite;
}

.float-btn.phone {
    background-color: var(--phone);
    animation: pulse-ph 2s infinite;
    animation-delay: 1s;
}

.float-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-ph {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

/* Footer */
footer {
    background: #ffffff;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

/* Page Headers (For subpages) */
.page-header {
    padding: 120px 5% 30px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-main) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent);
}

/* Content Pages */
.content-section {
    padding: 20px 5% 100px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.content-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--accent);
}

.contact-info-card h4 {
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--bg-main);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--accent-hover);
}

/* Background Decorative Images */
.bg-decor-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-decor {
    position: absolute;
    opacity: 0.2;
    border-radius: 20px;
    object-fit: cover;
    filter: blur(2px);
}

.decor-1 {
    top: 5%;
    right: -5%;
    width: 350px;
    height: 250px;
    transform: rotate(8deg);
}

.decor-2 {
    top: 35%;
    left: -10%;
    width: 250px;
    height: 350px;
    transform: rotate(-12deg);
}

.decor-3 {
    top: 65%;
    right: -8%;
    width: 300px;
    height: 250px;
    transform: rotate(15deg);
}

.decor-4 {
    bottom: 5%;
    left: 5%;
    width: 300px;
    height: 200px;
    transform: rotate(-6deg);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .regions-container {
        flex-direction: column;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .regions-image {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        height: 300px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .reviews {
        clip-path: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    .hero {
        padding-top: 150px;
        text-align: center;
    }
    .hero-overlay {
        background: linear-gradient(0deg, var(--bg-main) 0%, rgba(248, 250, 252, 0.8) 50%, transparent 100%);
    }
    .hero-content {
        margin: 0 auto;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .page-header {
        padding: 100px 5% 20px;
    }
    .content-section {
        padding: 20px 5% 60px;
    }
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 5%;
    background-color: var(--bg-main);
    text-align: center;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 250px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item {
        height: 180px;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        height: 200px;
    }
}

/* Stats Section */
.stats-section {
    padding: 60px 5%;
    background-color: var(--text-main);
    color: white;
    text-align: center;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    padding: 20px;
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

/* Pros and Cons Section */
.pros-cons-section {
    padding: 80px 5%;
    background-color: var(--bg-main);
}

.pros-cons-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.pros-box, .cons-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pros-box:hover, .cons-box:hover {
    transform: translateY(-5px);
}

.box-header {
    padding: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.pros-header {
    background-color: #10b981;
}

.cons-header {
    background-color: var(--accent);
}

.pros-list, .cons-list {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.pros-list li, .cons-list li {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pros-list li:last-child, .cons-list li:last-child {
    margin-bottom: 0;
}

.pros-list i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 4px;
}

.cons-list i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}
