/* modern-style.css */
:root {
    --primary-color: #1B2A47;
    /* Navy Blue */
    --accent-color: #D4AF37;
    /* Gold */
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #EBF0F6;
    /* Soft blue-gray to reduce glare */
    --white: #F8FAFC;
    /* Softer, slightly cool white */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background: linear-gradient(to bottom, #Fdfbf7, var(--bg-light));
    /* Cream to soft blue-gray fade */
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Header & Navigation */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-color);
}

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

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

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

.footer-widget h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-widget p,
.footer-widget li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

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

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

/* Typography Helpers */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 10px;
}

.mt-4 {
    margin-top: 20px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-4 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* New Specific Styles for Index Elements */
.hero-section {
    background: linear-gradient(rgba(27, 42, 71, 0.8), rgba(27, 42, 71, 0.9)), url('140589.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-section {
    padding: 60px 0;
    background: #FFFcf7;
    /* Very subtle cream for content pages */
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.feature-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--accent-color);
}

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

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--primary-color);
}

/* Gallery */
.gallery-section {
    padding: 80px 0;
    background: #Fdfbf7;
    /* Continuing the cream tone */
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }
}


/* Hide Google Translate UI Seamlessly */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
    position: relative !important;
}

.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


/* Phase 3 Styles */
.hero-section {
    background: linear-gradient(rgba(27, 42, 71, 0.8), rgba(27, 42, 71, 0.9)), url('images/hero.png') center/cover no-repeat !important;
}

.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFFAF0, #ffffff);
    /* Warm cream to white */
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

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

.trust-item {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.trust-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.trust-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-content {
    flex: 1;
}

.process-list {
    list-style: none;
    margin-top: 30px;
}

.process-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-text h4 {
    margin-bottom: 5px;
}

.step-text p {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .process-flex {
        flex-direction: column;
    }
}


/* Native Language Switcher Styles */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
}

.lang-switcher a {
    color: var(--text-muted);
    padding: 2px 5px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-switcher a:hover {
    color: var(--primary-color);
}

.lang-switcher a.active {
    color: var(--white);
    background-color: var(--primary-color);
}
/* Testimonial Slider System */
.slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}
.testimonials-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonials-slider-track::-webkit-scrollbar {
    display: none;
}
.slider-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
}
/* Reusing existing .testimonial-card inside .slider-card but giving it height 100% so they match */
.slider-card .testimonial-card {
    height: 100%;
    margin: 0;
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.slider-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}
@media (max-width: 900px) {
    .slider-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 600px) {
    .slider-card { flex: 0 0 100%; }
}


/* Extra Mobile Responsive Adjustments (Phones < 480px) */
@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .page-title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .nav-links { gap: 10px; }
    .nav-links a { font-size: 0.9rem; }
    .btn { padding: 10px 20px; font-size: 0.95rem; }
    .trust-item { padding: 25px 20px; }
    .trust-grid { gap: 20px; }
}


/* Floating Chat Widget */
.floating-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    text-decoration: none;
}
.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}
.float-whatsapp {
    background-color: #25D366;
}
.float-line {
    background-color: #00B900;
}
/* Notification Pulse */
.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    z-index: -1;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 768px) {
    .floating-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

