/* Variables */
:root {
    --primary-color: #0e3d32;
    /* Deep Green */
    --primary-hover: #082821;
    --accent-color: #d4af37;
    /* Gold */
    --text-color: #333333;
    --text-light: #555555;
    --bg-white: #ffffff;
    --bg-light: #f4f7f6;
    /* Slight green tint grey */
    --border-radius: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #0e3d32;
    /* Contrast text */
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.profile-content .section-title::after {
    left: 0;
    transform: none;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-light);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid #e2e8f0;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
}

.contact-info span {
    margin-left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Header */
.main-header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.logo .highlight {
    color: var(--primary-color);
}

.desktop-nav a {
    margin-left: 2rem;
    font-weight: 600;
    color: #ffffff;
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

.cta-header {
    margin-left: 2rem;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-nav {
    display: none;
    /* Hidden by default */
    background-color: var(--bg-white);
    padding: 1rem;
    border-top: 1px solid #eee;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    background-image: url('hero-bg-v2.png');
    /* Client provided image v2 */
    background-size: cover;
    background-position: center top;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 80, 0.4);
    /* Dark blue overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Welcome Section */
.welcome-section p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 200px;
    background-color: #ddd;
    background-image: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=60');
    /* Placeholder abstract */
    background-size: cover;
    background-position: center;
}

.service-card:nth-child(2) .card-image {
    background-image: url('https://images.unsplash.com/photo-1623659248883-d0295173167b?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=60');
}

.service-card:nth-child(3) .card-image {
    background-image: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?ixlib=rb-4.0.3&auto=format&fit=crop&w=500&q=60');
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-text h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.benefit-text p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Methodology */
.methodology-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.method-item {
    text-align: center;
}

.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-md);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
}

/* Profile Section */
.profile-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.credentials-list {
    margin-top: 2rem;
}

.credentials-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.credentials-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: white;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #cbd5e1;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #cbd5e1;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    background-color: var(--primary-hover);
    padding: 1.5rem 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .desktop-nav,
    .cta-header {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/ *   Z i g Z a g   S e c t i o n   * /     . z i g z a g - g r i d    {
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
         
}

         . z i g z a g - r o w    {
                 d i s p l a y :    f l e x ;
                 f l e x - w r a p :    w r a p ;
                 a l i g n - i t e m s :    c e n t e r ;
                 b a c k g r o u n d - c o l o r :    v a r ( - - b g - w h i t e ) ;
         
}

         / *   R o w   c o l o r s :   O d d   r o w s   s l i g h t l y   d a r k e r / l i g h t e r   i f   n e e d e d ,
   b u t   t h e   d e s i g n   s h o w s   w h i t e   b a c k g r o u n d   f o r   t e x t ?             N o ,
   t h e   i m a g e s   s h o w   c o n t r a s t i n g   b a c k g r o u n d s   o r   j u s t   c l e a n .             L e t ' s   k e e p   i t   s i m p l e :   A l t e r n a t i n g   i m a g e s . 
    * /         . z i g z a g - c o l    {
                 w i d t h :    5 0 % ;
                 m i n - h e i g h t :    4 0 0 p x ;
         
}

         . z i g z a g - i m a g e    {
                 b a c k g r o u n d - s i z e :    c o v e r ;
                 b a c k g r o u n d - p o s i t i o n :    c e n t e r ;
                 h e i g h t :    1 0 0 % ;
                 m i n - h e i g h t :    4 0 0 p x ;
                 / *   E n s u r e   h e i g h t   * /             b a c k g r o u n d - c o l o r :    # d d d ;
                 / *   F a l l b a c k   * /     
}

         / *   I m a g e   a s s i g n m e n t s   w i l l   b e   i n l i n e   o r   s p e c i f i c   c l a s s e s   * /         . z i g z a g - c o n t e n t    {
                 p a d d i n g :    4 r e m ;
                 d i s p l a y :    f l e x ;
                 f l e x - d i r e c t i o n :    c o l u m n ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
         
}

         . z i g z a g - c o n t e n t   h 3    {
                 f o n t - s i z e :    1 . 8 r e m ;
                 c o l o r :    v a r ( - - p r i m a r y - c o l o r ) ;
                 m a r g i n - b o t t o m :    1 r e m ;
         
}

         . z i g z a g - c o n t e n t   p    {
                 c o l o r :    v a r ( - - t e x t - l i g h t ) ;
                 m a r g i n - b o t t o m :    2 r e m ;
                 f o n t - s i z e :    1 . 0 5 r e m ;
         
}

         . z i g z a g - r o w : n t h - c h i l d ( e v e n )    {
                 f l e x - d i r e c t i o n :    r o w - r e v e r s e ;
         
}

         . b t n - o u t l i n e - g o l d    {
                 b o r d e r :    2 p x   s o l i d   v a r ( - - a c c e n t - c o l o r ) ;
                 c o l o r :    v a r ( - - p r i m a r y - c o l o r ) ;
                 b a c k g r o u n d :    t r a n s p a r e n t ;
                 p a d d i n g :    0 . 6 r e m   2 r e m ;
                 b o r d e r - r a d i u s :    4 p x ;
                 / *   S l i g h t l y   s q u a r e r   a s   p e r   r e f e r e n c e   i m a g e   * /             f o n t - w e i g h t :    6 0 0 ;
                 m a r g i n - t o p :    a u t o ;
                 w i d t h :    f i t - c o n t e n t ;
                 d i s p l a y :    i n l i n e - f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 g a p :    0 . 5 r e m ;
                 t e x t - t r a n s f o r m :    u p p e r c a s e ;
                 f o n t - s i z e :    0 . 8 5 r e m ;
         
}

         . b t n - o u t l i n e - g o l d : h o v e r    {
                 b a c k g r o u n d :    v a r ( - - a c c e n t - c o l o r ) ;
                 c o l o r :    # 0 e 3 d 3 2 ;
                 t e x t - d e c o r a t i o n :    n o n e ;
         
}

         / *   R e s p o n s i v e   * /     @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )    {
                 . z i g z a g - c o l    {
                             w i d t h :    1 0 0 % ;
                             m i n - h e i g h t :    3 0 0 p x ;
                     
    }

                     . z i g z a g - r o w    {
                             f l e x - d i r e c t i o n :    c o l u m n    ! i m p o r t a n t ;
                             / *   F o r c e   c o l u m n   s t a c k   a l w a y s   o n   m o b i l e   * /             
    }

                     / *   W e   w a n t   v i s u a l   o r d e r :   I m a g e   t h e n   T e x t   o n   m o b i l e ?                     U s u a l l y   y e s .                   I f   r o w s   a l t e r n a t e ,
       w e   n e e d   t o   h a n d l e   t h a t .                   D e f a u l t :   I m a g e   i s   1 s t   c h i l d   i n   o d d   r o w s .                   E v e n   r o w s :   r o w - r e v e r s e   m a k e s   C o n t e n t   1 s t .                   O n   m o b i l e ,
       w e   u s u a l l y   w a n t   I m a g e   t h e n   C o n t e n t .             * /             . z i g z a g - r o w : n t h - c h i l d ( e v e n )    {
                             f l e x - d i r e c t i o n :    c o l u m n ;
                     
    }

                     . z i g z a g - c o n t e n t    {
                             p a d d i n g :    2 r e m ;
                     
    }

         
}

     

/* ZigZag Section */
.zigzag-grid {
    display: flex;
    flex-direction: column;
}

.zigzag-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--bg-white);
}

/* Row colors: Odd rows slightly darker/lighter if needed, but the design shows white background for text? 
   No, the images show contrasting backgrounds or just clean. 
   Let's keep it simple: Alternating images.
*/

.zigzag-col {
    width: 50%;
    min-height: 400px;
}

.zigzag-image {
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 400px;
    /* Ensure height */
    background-color: #ddd;
    /* Fallback */
}

/* Image assignments will be inline or specific classes */

.zigzag-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zigzag-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.zigzag-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.zigzag-row:nth-child(even) {
    flex-direction: row-reverse;
}

.btn-outline-gold {
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.6rem 2rem;
    border-radius: 4px;
    /* Slightly squarer as per reference image */
    font-weight: 600;
    margin-top: auto;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-outline-gold:hover {
    background: var(--accent-color);
    color: #0e3d32;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .zigzag-col {
        width: 100%;
        min-height: 300px;
    }

    .zigzag-row {
        flex-direction: column !important;
        /* Force column stack always on mobile */
    }

    /* We want visual order: Image then Text on mobile? 
       Usually yes.
       If rows alternate, we need to handle that.
       Default: Image is 1st child in odd rows.
       Even rows: row-reverse makes Content 1st.
       On mobile, we usually want Image then Content.
    */
    .zigzag-row:nth-child(even) {
        flex-direction: column;
    }

    .zigzag-content {
        padding: 2rem;
    }
}