/*======================================================================
    CUYAMEL CONSTRUCTION & REMODELING LLC
    STYLE.CSS
    Version: 2.1

----------------------------------------------------------------------
Project      : CUYAMEL Construction Website
Company      : CUYAMEL Construction & Remodeling LLC
Location     : Louisville, Kentucky
Author       : Luis Cazulá & OpenAI
Phase        : Final code audit and refactor
Status       : Release candidate

======================================================================

TABLE OF CONTENTS

01. Google Fonts

02. CSS Variables
    2.1 Colors
    2.2 Layout and Spacing
    2.3 Border Radius
    2.4 Shadows, Glass and Borders
    2.5 Transitions

03. Reset

04. Base Styles
    4.1 Global Overflow Protection

05. Header
    5.1 Sticky Header
    5.2 Logo
    5.3 Navigation
    5.4 Header Actions
    5.5 Primary Button
    5.6 Mobile Menu

06. Home Sections
    6.1 Hero
    6.2 About
    6.3 Services
    6.4 Featured Projects
    6.5 Why Choose Us
    6.6 Testimonials
    6.7 Company Stats
    6.8 Call To Action
    6.9 WhatsApp Button

07. Shared Components
    7.1 Page Hero
    7.2 Contact Layout
    7.3 Form Elements
    7.4 Contact Card
    7.5 Trust Bar
    7.6 Service Area
    7.3.5 Form Status and Accessibility Helpers

08. Footer

09. Reusable Components
    9.1 Card
    9.2 Section
    9.3 Section Header
    9.4 Grid
    9.5 Check List
    9.6 Legal Content

10. About Page
    10.1 Our Story
    10.2 Why Choose Cuyamel
    10.3 Our Process
    10.4 Core Values

11. Scroll Animations
    11.1 Reveal Up
    11.2 Reduced Motion

12. FAQ

13. Projects Page
    13.1 Featured Projects
    13.2 Project Showcase
        13.2.1 Masonry Gallery
        13.2.2 Gallery Overlay
        13.2.3 Image Dialog
    13.3 Project Spotlight

14. Global CTA

15. Responsive Rules
    (See assets/css/responsive.css)

======================================================================*/


/*======================================================================
01. GOOGLE FONTS
======================================================================*/

/* Montserrat is loaded with a <link> in each HTML document.
   Do not add an @import here: it delays stylesheet rendering. */

/*======================================================================
02. CSS VARIABLES
======================================================================*/

:root{

    /*------------------------------------
    2.1 Colors
    ------------------------------------*/

    --primary:#0D2C54;
    --secondary:#D4AF37;

    --dark:#172033;
    --light:#F8F8F8;
    --surface:var(--light);

    --white:#FFFFFF;
    --gray:#6B7280;
    --success-bg:#EEF7F0;
    --success-text:#155724;
    --error-bg:#FFF1F1;
    --error-text:#8A1C1C;

    /*------------------------------------
    2.2 Layout
    ------------------------------------*/

    --container:1380px;

    /*------------------------------------
2.2.1 Spacing
------------------------------------*/

--space-1:4px;
--space-2:8px;
--space-3:12px;
--space-4:16px;
--space-5:20px;
--space-6:24px;
--space-7:32px;
--space-8:40px;
--space-9:48px;
--space-10:64px;

    /*------------------------------------
    2.3 Border Radius
    ------------------------------------*/

    --radius-sm:16px;
    --radius-md:18px;
    --radius-lg:22px;
    --radius-xl:26px;
    --radius-round:40px;

    /*------------------------------------
    2.4 Shadows
    ------------------------------------*/

    --shadow-sm:0 15px 35px rgba(0,0,0,.08);
    --shadow-md:0 20px 45px rgba(0,0,0,.10);
    --shadow-lg:0 20px 50px rgba(0,0,0,.12);
    --shadow-xl:0 30px 70px rgba(0,0,0,.10);
    --shadow-header:0 18px 45px rgba(0,0,0,.28);
    --shadow-button:0 15px 30px rgba(212,175,55,.30);
    --shadow-hover:0 10px 25px rgba(0,0,0,.20);
    --shadow-card:0 20px 45px rgba(0,0,0,.08);
    --shadow-card-hover:0 30px 70px rgba(0,0,0,.10);

/*------------------------------------
2.4.1 Glass
------------------------------------*/

--glass-light:rgba(255,255,255,.05);
--glass-hover:rgba(255,255,255,.10);
--glass-header:rgba(10,35,66,.92);

/*------------------------------------
2.4.2 Borders
------------------------------------*/

--border-light:rgba(255,255,255,.10);
--border-soft:rgba(255,255,255,.08);
--border-gold:rgba(212,175,55,.45);
--border-gold-hover:rgba(212,175,55,.35);

    /*------------------------------------
    2.5 Transitions
    ------------------------------------*/

    --transition-fast:.25s ease;
    --transition:.35s ease;
    --transition-slow:.50s ease;

}

/*======================================================================
03. RESET
======================================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/*======================================================================
04. BASE STYLES
======================================================================*/

html{

    scroll-behavior:smooth;
    width:100%;
    overflow-x:hidden;

}

body{

    font-family:'Montserrat',sans-serif;

    color:var(--dark);

    background:var(--white);

    width:100%;
    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:92%;

    max-width:1380px;

    margin:auto;

}

/*======================================================================
05. HEADER
======================================================================*/

#header{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 95px;

    background: linear-gradient(
        180deg,
        var(--primary) 0%,
        #10345F 100%
    );

    border-bottom: 1px solid var(--border-soft);

    transition:
        background var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        backdrop-filter var(--transition);

    z-index: 999;
}

/*------------------------------------
5.1 Sticky Header
------------------------------------*/

#header.header-scrolled{

    background: var(--glass-header);

    border-bottom: 1px solid rgba(212,175,55,.20);

    box-shadow: var(--shadow-header);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

}

#header.header-scrolled .logo img{

    transform:scale(.99);

}

#header.header-scrolled .btn-primary{

    box-shadow:0 10px 25px rgba(212,175,55,.25);

}

#header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:92%;
    max-width:1400px;
    height:100%;
    margin:auto;
}

/*------------------------------------
5.2 Logo
------------------------------------*/

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:250px;
    height:auto;

    display:block;

    transition:
        transform var(--transition),
        filter var(--transition);
}

.logo:hover img{

    transform:scale(1.04);

    filter:drop-shadow(0 0 12px rgba(212,175,55,.18));

}

/*------------------------------------
5.3 Navigation
------------------------------------*/

.navbar ul{
    display:flex;
    gap:40px;
}

.navbar a{
    position:relative;

    display:flex;
    align-items:center;

    color:var(--white);

    font-size:15px;
    font-weight:600;
    letter-spacing:.2px;

    transition:
        color var(--transition),
        transform var(--transition-fast);
}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--secondary);

    border-radius:50px;

    transition:width var(--transition);

}

.navbar a:hover{

    color:var(--secondary);

}

.navbar a:hover::after,
.navbar a:focus-visible::after,
.navbar .active::after{

    width:100%;

}

.navbar a:active{

    transform:translateY(1px);

}

.navbar a:focus-visible{

    color:var(--secondary);
    outline:2px solid var(--secondary);
    outline-offset:6px;

}

/*------------------------------------
5.4 Header Actions
------------------------------------*/

.header-right{
    display:flex;
    align-items:center;
    gap:28px;
}

.phone{
    position:relative;

    display:flex;
    align-items:center;
    gap:8px;

    color:var(--white);

    font-size:15px;
    font-weight:600;

    transition:
        color var(--transition),
        transform var(--transition-fast);
}

.phone:hover{

    color:var(--secondary);
    transform:translateY(-1px);

}

.phone::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-7px;

    width:0;
    height:2px;

    background:var(--secondary);

    border-radius:50px;

    transition:width var(--transition);

}

.phone:hover::after,
.phone:focus-visible::after{

    width:100%;

}

.phone:focus-visible{

    color:var(--secondary);
    outline:2px solid var(--secondary);
    outline-offset:6px;

}

.phone i{
    color:var(--secondary);
    font-size:17px;
    transition:transform var(--transition-fast);
}

.phone:hover i{
    transform:rotate(-10deg) scale(1.08);
}

/*------------------------------------
5.5 Primary Button
------------------------------------*/

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 28px;

    border:none;
    border-radius:var(--radius-round);

    background:var(--secondary);
    color:var(--primary);

    font-size:14px;
    font-weight:700;

    cursor:pointer;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        filter var(--transition);
}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:var(--shadow-button);

    filter:brightness(1.04);

}

.btn-primary:active{

    transform:translateY(-1px);

}

.btn-primary:focus-visible{

    outline:2px solid var(--white);

    outline-offset:4px;

}

/*------------------------------------
5.6 Mobile Menu
------------------------------------*/

#menu-toggle{
    display:none;
    align-items:center;
    justify-content:center;

    padding:0;
    appearance:none;

    width:48px;
    height:48px;

    margin-right:var(--space-5);

    background:var(--glass-light);

    border:1px solid var(--border-light);
    border-radius:var(--radius-md);

    color:var(--white);
    font-size:36px;

    cursor:pointer;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition-fast),
        box-shadow var(--transition);
}

#menu-toggle i{
    transition:transform var(--transition-fast);
}

#menu-toggle:hover{

    background:var(--glass-hover);

    border-color:var(--border-gold);

    box-shadow:var(--shadow-hover);

    transform:translateY(-2px);

}

#menu-toggle:hover i{

    transform:scale(1.08);

}

#menu-toggle:active{

    transform:scale(.96);

}

#menu-toggle:focus-visible{

    outline:2px solid var(--secondary);

    outline-offset:4px;

}

/*======================================================================
06. HOME SECTIONS
======================================================================*/

/*------------------------------------
6.1 Hero
------------------------------------*/

#hero{
    position:relative;
    display:flex;
    align-items:center;
    height:100vh;
    min-height:750px;
    overflow:hidden;
    background:url("../images/hero-bg.jpg") center/cover no-repeat;
}

/*------------------------------------
6.1.1 Hero Overlay
------------------------------------*/

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,20,35,.88) 0%,
        rgba(8,20,35,.72) 45%,
        rgba(8,20,35,.25) 100%
    );
}

/*------------------------------------
6.1.2 Hero Content
------------------------------------*/

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    padding-top:150px;
    color:var(--white);
}

.hero-subtitle{
    display:inline-block;
    margin-bottom:20px;
    color:var(--secondary);
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.hero-content h1{
    margin-bottom:25px;
    font-size:74px;
    font-weight:800;
    line-height:1.1;
}

.hero-content p{
    margin-bottom:40px;
    color:#E5E7EB;
    font-size:20px;
    line-height:1.8;
}

/*------------------------------------
6.1.3 Hero Buttons
------------------------------------*/

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:45px;
}


/*------------------------------------
6.1.4 Hero Features
------------------------------------*/

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:35px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.hero-features i{
    color:var(--secondary);
    font-size:22px;
}

/*------------------------------------
6.2 About
------------------------------------*/

#about{
    padding:120px 0;
    background:var(--white);
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/*------------------------------------
6.2.1 About Image
------------------------------------*/

.about-image img{
    width:100%;
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-lg);
}

/*------------------------------------
6.2.2 About Content
------------------------------------*/

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:14px;

    margin-bottom:15px;
    color:var(--secondary);
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-tag::before{
    content:"";

    width:60px;
    height:2px;

    background:var(--secondary);
    border-radius:50px;
}

.about-content h2{
    margin-bottom:25px;
    color:var(--primary);
    font-size:48px;
    line-height:1.2;
}

.about-content p{
    margin-bottom:22px;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/*------------------------------------
6.2.3 About List
------------------------------------*/

.about-list{
    margin:35px 0;
}

.about-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-weight:600;
}

.about-list i{
    color:var(--secondary);
    font-size:22px;
}

/*------------------------------------
6.3 Services
------------------------------------*/

#services{
    padding:120px 0;
    background:#F7F9FC;
}

/*------------------------------------
6.3.1 Services Grid
------------------------------------*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*------------------------------------
6.3.2 Service Card
------------------------------------*/

.service-card{

    background:var(--white);

    padding:48px 38px;

    border-radius:24px;

    text-align:center;

    border:1px solid rgba(212,175,55,.12);

    box-shadow:var(--shadow-card);

    transition:var(--transition);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--border-gold-hover);

    box-shadow:var(--shadow-card-hover);

}

.service-card i{

    display:block;

    margin-bottom:28px;

    color:var(--secondary);

    font-size:52px;

}

.service-card h3{

    margin-bottom:18px;

    color:var(--primary);

    font-size:24px;

    font-weight:700;

}

.service-card p{

    color:var(--gray);

    font-size:16px;

    line-height:1.8;

}

/*------------------------------------
6.4 Featured Projects
------------------------------------*/

#projects{
    padding:120px 0;
    background:var(--white);
}

/*------------------------------------
6.4.1 Projects Grid
------------------------------------*/

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

/*------------------------------------
6.4.2 Project Card
------------------------------------*/

.project-card{
    position:relative;
    cursor:pointer;

    overflow:hidden;

    background:var(--white);

    border-radius:24px;

    border:1px solid rgba(212,175,55,.12);

    box-shadow:var(--shadow-card);

    transition:var(--transition);

}

.project-card:hover{

    transform:translateY(-10px);

    border-color:var(--border-gold-hover);

    box-shadow:var(--shadow-card-hover);

}

.project-card img{

    display:block;

    width:100%;

    height:280px;

    object-fit:cover;

    transition:transform .5s ease;

}

.project-card:hover img{

    transform:scale(1.05);

}

.project-info{

    padding:30px;

}

.project-info h3{

    margin-bottom:10px;

    color:var(--primary);

    font-size:24px;

    font-weight:700;

}

.project-info p{

    color:var(--gray);

    font-size:16px;

    line-height:1.8;

}

/*------------------------------------
6.5 Why Choose Us
------------------------------------*/

#why-us{
    padding:120px 0;
    background:#F8FAFC;
}

/*------------------------------------
6.5.1 Layout
------------------------------------*/

.why-container{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:70px;
}

/*------------------------------------
6.5.2 Why Image
------------------------------------*/

.why-image img{
    width:100%;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
}

/*------------------------------------
6.5.3 Why Content
------------------------------------*/

.why-content h2{
    margin:18px 0 25px;
    color:var(--primary);
    font-size:46px;
}

.why-content p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/*------------------------------------
6.5.4 Feature List
------------------------------------*/

.why-grid{
    display:grid;
    gap:28px;
    margin-top:40px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.why-item i{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;

    width:60px;
    height:60px;

    border-radius:50%;

    background:var(--secondary);
    color:var(--primary);

    font-size:26px;
}

.why-item h4{
    margin-bottom:8px;
    color:var(--primary);
    font-size:22px;
}

.why-item p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.7;
}

/*------------------------------------
6.6 Testimonials
------------------------------------*/

#testimonials{
    padding:120px 0;
    background:var(--white);
}

/*------------------------------------
6.6.1 Testimonials Grid
------------------------------------*/

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*------------------------------------
6.6.2 Testimonial Card
------------------------------------*/

.testimonial-card{

    background:var(--white);

    padding:45px 40px;

    border-radius:24px;

    border:1px solid rgba(212,175,55,.12);

    box-shadow:var(--shadow-card);

    transition:var(--transition);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:var(--border-gold-hover);

    box-shadow:var(--shadow-card-hover);

}

.stars{

    margin-bottom:22px;

    color:var(--secondary);

    font-size:22px;

}

.testimonial-card p{

    margin-bottom:28px;

    color:var(--gray);

    line-height:1.8;

    font-size:16px;

}

.testimonial-card h4{

    margin-bottom:6px;

    color:var(--primary);

    font-size:20px;

    font-weight:700;

}

.testimonial-card span{

    color:#8FA2B6;

    font-size:14px;

    font-weight:500;

}

/*------------------------------------
6.7 Company Stats
------------------------------------*/

#stats{
    padding:90px 0;
    background:var(--primary);
}

/*------------------------------------
6.7.1 Stats Grid
------------------------------------*/

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

/*------------------------------------
6.7.2 Stat Item
------------------------------------*/

.stat-box{
    color:var(--white);
}

.stat-box h2{
    margin-bottom:12px;
    color:var(--secondary);
    font-size:60px;
    font-weight:800;
}

.stat-box p{
    color:var(--white);
    font-size:18px;
    letter-spacing:.5px;
}


/*------------------------------------
6.8.1 Outline Button
(Shared with Hero)
------------------------------------*/

.btn-outline{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:15px 30px;

    border:2px solid var(--white);
    border-radius:var(--radius-round);

    color:var(--white);

    font-weight:700;

    transition:var(--transition);
}

.btn-outline:hover{
    background:var(--white);
    color:var(--primary);
}

body.menu-open{

    overflow:hidden;

}

/*------------------------------------
6.9 WhatsApp Floating Button
------------------------------------*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:var(--white);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:9999;

    transition:all .35s ease;

    animation:whatsappPulse 2.5s infinite;

}

.whatsapp-btn:hover{

    transform:translateY(-5px) scale(1.08);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

/*======================================================================
07. SHARED COMPONENTS
======================================================================*/

/*------------------------------------
7.1 Page Hero
------------------------------------*/

.page-hero{

    position:relative;

    overflow:hidden;

    padding:180px 0 140px;

    background-position:center;

    background-size:cover;

    background-repeat:no-repeat;

}

/*------------------------------------
7.1.1 Background Variants
------------------------------------*/

.page-hero.home{

    background-image:url("../images/hero-bg.jpg");

}

.page-hero.about{

    background-image:url("../images/about-hero.jpg");

}

.page-hero.services{

    background-image:url("../images/services-hero.jpg");

}

.page-hero.projects{

    background-image:url("../images/projects-hero.jpg");

}

.page-hero.testimonials{

    background-color:var(--primary);
    background-image:url("../images/testimonials-hero.jpg");

}

.page-hero.contact{

    background-image:url("../images/contact-hero.jpg");

}

/*------------------------------------
7.1.2 Hero Overlay
------------------------------------*/

.page-hero-overlay{
    position:absolute;
    inset:0;
    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(7,22,43,.92) 0%,
        rgba(7,22,43,.82) 40%,
        rgba(7,22,43,.55) 70%,
        rgba(7,22,43,.35) 100%
    );
}

.page-hero .container,
.page-hero-content{
    position:relative;
    z-index:2;
    
}

.page-hero-content{
    max-width:700px;
    color:var(--white);
}

/*------------------------------------
7.1.3 Subtitle
------------------------------------*/

.page-subtitle{

    display:inline-flex;

    align-items:center;

    gap:14px;

    color:var(--secondary);

    font-size:15px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.page-subtitle::before{

    content:"";

    width:60px;

    height:2px;

    background:var(--secondary);

}

/*------------------------------------
7.1.4 Title & Description
------------------------------------*/

.page-hero h1{
    margin:18px 0 24px;

    color:var(--white);

    font-size:78px;
    font-weight:800;
    line-height:1.05;
    letter-spacing:-2px;
}

.page-hero p{
    max-width:650px;
    margin-bottom:45px;

    color:rgba(255,255,255,.92);

    font-size:20px;
    line-height:1.9;
}

.page-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

/*------------------------------------
7.2 Contact Layout
------------------------------------*/

.contact-section{
    position:relative;
    z-index:20;
    margin-top:-90px;
    padding-bottom:120px;
}

/*------------------------------------
7.2.1 Contact Grid
------------------------------------*/

.contact-grid{
    display:grid;
    grid-template-columns:1.8fr .85fr;
    align-items:stretch;
    gap:35px;
}

/*------------------------------------
7.2.2 Contact Form
------------------------------------*/

.contact-form{
    padding:55px;

    background:var(--white);

    border:1px solid rgba(212,175,55,.15);
    border-radius:var(--radius-xl);

    box-shadow:0 35px 80px rgba(0,0,0,.12);

    overflow:hidden;
}

.contact-form h2{
    margin:18px 0 22px;

    color:var(--primary);

    font-size:48px;
    font-weight:800;
    line-height:1.1;
}

.contact-form p{
    margin-bottom:40px;

    color:var(--gray);

    font-size:17px;
    line-height:1.9;
}

/*------------------------------------
7.3 Form Elements
------------------------------------*/

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.form-group{
    width:100%;
}

/*------------------------------------
7.3.1 Input Group
------------------------------------*/

.input-group{
    position:relative;
}

.input-group i{
    position:absolute;
    top:50%;
    left:22px;
    z-index:5;

    transform:translateY(-50%);

    color:var(--secondary);
    font-size:20px;

    pointer-events:none;
}

.textarea-group i{
    top:24px;
    transform:none;
}

/*------------------------------------
7.3.2 Form Fields
------------------------------------*/

.input-group input,
.input-group select,
.input-group textarea{
    width:100%;

    border:1px solid #E8ECF2;
    border-radius:var(--radius-sm);

    background:#F8F9FB;

    color:var(--primary);
    font-size:16px;

    transition:var(--transition);
}

.input-group input,
.input-group select{
    height:64px;
    padding:0 22px 0 58px;
}

.input-group textarea{
    min-height:220px;
    padding:22px 22px 22px 58px;
    resize:none;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{
    background:var(--white);
    border-color:var(--secondary);
    box-shadow:0 0 0 5px rgba(212,175,55,.15);
}

/*------------------------------------
7.3.3 Submit Button
------------------------------------*/

.form-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    width:100%;
    height:64px;

    margin-top:35px;

    border-radius:var(--radius-sm);

    font-size:16px;
    font-weight:700;
    letter-spacing:.5px;
}

/*------------------------------------
7.3.4 Privacy Notice
------------------------------------*/

.privacy-note{
    margin-top:18px;

    color:var(--gray);
    text-align:center;
    font-size:14px;
}

.privacy-note i{
    margin-right:6px;
    color:var(--secondary);
}

/*------------------------------------
7.3.5 Form Status and Accessibility Helpers
------------------------------------*/

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

.form-honeypot{
    /* Anti-spam field: the server still validates it, but visitors never see it. */
    display:none !important;
}

.form-message{
    margin:0 0 24px;
    padding:16px 18px;
    border-radius:var(--radius-sm);
    background:var(--success-bg);
    color:var(--success-text);
    font-weight:600;
}

.form-message.is-error{
    background:var(--error-bg);
    color:var(--error-text);
}

/*------------------------------------
7.4 Contact Card
------------------------------------*/

.contact-card{
    position:sticky;
    top:120px;

    padding:45px;

    background:var(--primary);
    color:var(--white);

    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);

    overflow:hidden;
}

/*------------------------------------
7.4.1 Card Header
------------------------------------*/

.contact-card-badge{
    display:inline-block;
    margin-bottom:18px;

    color:var(--secondary);

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.contact-card h3{
    margin-bottom:18px;

    font-size:34px;
    line-height:1.2;
}

.contact-card p{
    margin-bottom:35px;

    color:#D9E3EE;
    line-height:1.8;
}

/*------------------------------------
7.4.2 Contact Items
------------------------------------*/

.contact-card-item{
    display:flex;
    align-items:flex-start;
    gap:18px;

    margin-bottom:26px;
}

.contact-card-item i{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;

    width:52px;
    height:52px;

    border-radius:50%;

    background:rgba(255,255,255,.08);
    color:var(--secondary);

    font-size:22px;
}

.contact-card-item strong{
    display:block;
    margin-bottom:4px;

    font-size:15px;
}

.contact-card-item a,
.contact-card-item span{
    color:#D9E3EE;
    transition:var(--transition);
}

.contact-card-item a:hover{
    color:var(--secondary);
}

/*------------------------------------
7.4.3 Contact Button
------------------------------------*/

.contact-card-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;

    width:100%;
    margin-top:35px;
}

/*------------------------------------
7.5 Trust Bar
------------------------------------*/

.trust-bar{
    padding:90px 0;
    background:#F5F7FB;
}

/*------------------------------------
7.5.1 Trust Grid
------------------------------------*/

.trust-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    overflow:hidden;

    background:var(--white);

    border-radius:var(--radius-lg);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/*------------------------------------
7.5.2 Trust Item
------------------------------------*/

.trust-item{
    padding:40px 30px;

    text-align:center;

    border-right:1px solid #ECECEC;

    transition:var(--transition);
}

.trust-item:last-child{
    border-right:none;
}

.trust-item:hover{
    background:#FBFCFE;
}

.trust-item i{
    display:flex;
    justify-content:center;
    align-items:center;

    width:72px;
    height:72px;

    margin:0 auto 22px;

    border-radius:50%;

    background:var(--primary);
    color:var(--secondary);

    font-size:30px;
}

.trust-item span{
    display:block;

    margin-bottom:12px;

    color:var(--primary);

    font-size:21px;
    font-weight:700;
    line-height:1.3;
}

.trust-item p{
    color:var(--gray);

    font-size:15px;
    line-height:1.7;
}

/*------------------------------------
7.6 Service Area
------------------------------------*/

.service-area{
    padding:100px 0;
    background:var(--white);
}

/*------------------------------------
7.6.1 Layout
------------------------------------*/

.service-grid{
    display:grid;
    grid-template-columns:1.6fr .8fr;
    align-items:center;
    gap:60px;
}

.service-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/*------------------------------------
7.6.2 Map
------------------------------------*/

.service-map{
    overflow:hidden;

    background:var(--white);

    border:1px solid rgba(212,175,55,.18);
    border-radius:var(--radius-xl);

    box-shadow:var(--shadow-xl);
}

.service-map iframe{
    display:block;
    width:100%;
    height:650px;
    border:0;
}

/*------------------------------------
7.6.3 Content
------------------------------------*/

.service-content h2{
    margin:15px 0 20px;

    color:var(--primary);

    font-size:42px;
}

.service-content p{
    margin-bottom:35px;

    color:var(--gray);
    line-height:1.9;
}

.service-btn{
    width:max-content;
    margin-top:40px;
}

/*------------------------------------
7.6.4 Service List
------------------------------------*/

.service-list{
    display:grid;
    gap:18px;
}

.service-list div{
    display:flex;
    align-items:center;
    gap:16px;

    padding:16px 0;

    border-bottom:1px solid #ECECEC;

    color:var(--primary);

    font-size:18px;
    font-weight:600;

    transition:var(--transition);
}

.service-list div:last-child{
    border-bottom:none;
}

.service-list div:hover{
    padding-left:10px;
}

.service-list i{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;

    width:42px;
    height:42px;

    border-radius:50%;

    background:var(--primary);
    color:var(--secondary);

    transition:var(--transition);
}

.service-list div:hover i{
    transform:rotate(360deg);

    background:var(--secondary);
    color:var(--primary);
}

/*======================================================================
08. FOOTER
======================================================================*/

.footer{
    padding:100px 0 35px;

    background:#081B31;
    color:var(--white);
    position:relative;
    overflow:hidden;
}

.footer::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:0;

    height:3px;

    background:linear-gradient(
        90deg,
        transparent,
        var(--secondary),
        transparent
    );

    transition:width .8s ease;

}

.footer:hover::before{

    width:100%;

}

/*------------------------------------
8.1 Footer Layout
------------------------------------*/

.footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1.2fr;
    gap:60px;

    padding-bottom:50px;

    border-bottom:1px solid rgba(255,255,255,.12);
}

/*------------------------------------
8.2 Footer Brand
------------------------------------*/

.footer-logo{
    width:320px;
    margin-bottom:30px;

    transition:var(--transition);
}

.footer-logo:hover{

    transform:scale(1.03);

    filter:drop-shadow(0 10px 20px rgba(212,175,55,.18));

}

.footer-text{

    color:#B9C5D3;

    font-size:16px;

    line-height:1.9;

    max-width:230px;

    margin-top:-10px;

    margin-bottom:30px;

}

/*------------------------------------
8.3 Footer Navigation
------------------------------------*/

.footer-col h4{
    position:relative;

    margin-bottom:28px;
    padding-bottom:12px;

    color:var(--white);

    font-size:24px;
    font-weight:700;
}

.footer-col h4::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:50px;
    height:3px;

    border-radius:20px;

    background:var(--secondary);
}

.footer-col ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-col li{
    display:flex;
    align-items:center;
    gap:10px;

    margin-bottom:15px;

    color:#B9C5D3;
    line-height:1.6;
}

.footer-col li a{
    display:inline-block;

    color:#B9C5D3;
    text-decoration:none;

    transition:var(--transition);
}

.footer-col li a:hover{
    color:var(--secondary);
    transform:translateX(6px);
}

.footer-col i{
    color:var(--secondary);
    font-size:18px;
}

/*------------------------------------
8.4 Social Links
------------------------------------*/

.footer-social{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:20px;

}

.footer-social a{
    display:flex;
    justify-content:center;
    align-items:center;

    width:52px;
    height:52px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;

    background:rgba(255,255,255,.06);
    color:var(--white);

    cursor:pointer;
    transition:var(--transition);
}

.footer-social a:hover{

    transform:translateY(-6px) scale(1.05);

    background:var(--secondary);

    border-color:var(--secondary);

    color:var(--primary);

    box-shadow:0 18px 35px rgba(212,175,55,.35);

}

/*------------------------------------
8.5 Footer Bottom
------------------------------------*/

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;

    margin-top:35px;
    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom div{
    display:flex;
    gap:25px;
}

.footer-bottom a{
    color:#8FA2B6;
    text-decoration:none;

    transition:var(--transition);
}

.footer-bottom a:hover{
    color:var(--secondary);
}

/*======================================================================
09. REUSABLE COMPONENTS
======================================================================*/


/*------------------------------------
9.1 Card Component
------------------------------------*/

.card{

    position:relative;

    background:var(--white);

    padding:55px 38px;

    border-radius:var(--radius-xl);

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-xl);

}

.card-icon{

    display:block;

    margin-bottom:28px;

}

.card-icon i{

    font-size:58px;

    color:var(--secondary);

}

.card-title{

    font-size:22px;

    margin-bottom:18px;

}

.card-text{

    font-size:16px;

    color:var(--gray);

    line-height:1.8;

}

/*------------------------------------
9.2 Section Component
------------------------------------*/

.section{

    padding:120px 0;

}

.section-light{

    background:var(--white);

}

.section-gray{

    background:var(--surface);

}

/*------------------------------------
9.3 Section Header Component
------------------------------------*/

.section-header{

    max-width:760px;

    margin:0 auto 90px;

    text-align:center;

}

.section-header h2{

    font-size:44px;

    font-weight:800;

    line-height:1.15;

    letter-spacing:-1px;

    margin:20px 0 25px;

}

.section-header p{

    font-size:17px;

    color:var(--gray);

    line-height:1.9;

}

/*------------------------------------
9.4 Grid Component
------------------------------------*/

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*------------------------------------
9.5 Check List Component
------------------------------------*/

.check-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.check-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.check-item i{

    color:var(--secondary);

    font-size:22px;

}

/*------------------------------------
9.6 Legal Content
------------------------------------*/

.legal-page{

    padding:120px 0;

    background:var(--surface);

}

.legal-content{

    max-width:900px;

    margin:0 auto;

    padding:clamp(28px,5vw,56px);

    background:var(--white);

    border:1px solid var(--border-soft);

    border-radius:var(--radius-xl);

    box-shadow:var(--shadow-sm);

}

.legal-updated{

    margin:0 0 32px;

    color:var(--gray);

    font-weight:600;

}

.legal-intro{

    margin:0 0 36px;

    color:var(--gray);

    font-size:18px;

    line-height:1.85;

}

.legal-content h2{

    margin:42px 0 14px;

    color:var(--primary);

    font-size:clamp(26px,3vw,34px);

}

.legal-content h3{

    margin:28px 0 10px;

    color:var(--primary);

    font-size:21px;

}

.legal-content p,
.legal-content li{

    color:var(--gray);

    font-size:17px;

    line-height:1.85;

}

.legal-content ul{

    margin:0 0 24px;

    padding-left:24px;

}

.legal-content a{

    color:var(--primary);

    text-decoration:underline;

    text-underline-offset:3px;

}

.legal-content a:hover{

    color:var(--secondary);

}

.legal-note{

    margin-top:38px;

    padding:20px 22px;

    color:var(--gray);

    line-height:1.75;

    border-left:4px solid var(--secondary);

    background:var(--surface);

}


/*======================================================================
10. ABOUT PAGE
======================================================================*/

/*------------------------------------
10.1 Our Story
------------------------------------*/

.about-story{

    padding:120px 0;

}

/*------------------------------------
10.1.1 About Grid
------------------------------------*/

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:80px;

}

/*------------------------------------
10.1.2 About Image
------------------------------------*/

.about-image{

    position:relative;

}


/*------------------------------------
10.1.3 About Content
------------------------------------*/


/*------------------------------------
10.1.4 About Checklist
------------------------------------*/

.about-checks{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.about-checks div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.about-checks i{

    color:var(--secondary);

    font-size:22px;

}

/*------------------------------------
10.2 Why Choose CUYAMEL
------------------------------------*/

.why-about{

    padding:120px 0;

    background:#F8F8F8;

}

/*------------------------------------
10.2.1 Why Grid
------------------------------------*/

.why-about-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*------------------------------------
10.3 Our Process
------------------------------------*/

.our-process{

    padding:120px 0;

}

/*------------------------------------
10.3.1 Process Grid
------------------------------------*/

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/*------------------------------------
10.3.2 Process Number
------------------------------------*/

.process-number{

    position:absolute;

    top:25px;

    right:25px;

    font-size:40px;

    font-weight:800;

    color:rgba(212,175,55,.15);

}

/*------------------------------------
10.4 Core Values
------------------------------------*/

.core-values{

    padding:120px 0;

    background:#F8F8F8;

}

/*------------------------------------
10.4.1 Values Grid
------------------------------------*/

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*------------------------------------
10.5 About Responsive
------------------------------------*/

/*------------------------------------
10.5.1 Tablet (≤991px)
------------------------------------*/

@media (max-width:991px){

    .about-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .why-about-grid,
    .process-grid,
    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*------------------------------------
10.5.2 Mobile (≤768px)
------------------------------------*/

@media (max-width:768px){

    .about-story,
    .why-about,
    .our-process,
    .core-values{

        padding:90px 0;

    }

    .about-checks{

        grid-template-columns:1fr;

    }

    .why-about-grid,
    .process-grid,
    .values-grid{

        grid-template-columns:1fr;

    }

}

/*------------------------------------
10.5.3 Small Mobile (≤576px)
------------------------------------*/

@media (max-width:576px){

    .about-story,
    .why-about,
    .our-process,
    .core-values{

        padding:70px 0;

    }

}

/*======================================================================
11. SCROLL ANIMATIONS
======================================================================*/

/*------------------------------------
11.1 Fade Up Reveal
------------------------------------*/

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*------------------------------------
11.2 Reduced Motion
------------------------------------*/

@media (prefers-reduced-motion:reduce){
    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        scroll-behavior:auto !important;
        transition-duration:.01ms !important;
    }
}

/*======================================================================
12. FAQ
======================================================================*/

/*------------------------------------
12.1 FAQ Container
------------------------------------*/

.faq{
    padding:100px 0;
    background:var(--white);
}

.faq-container{
    max-width:900px;
    margin:60px auto 0;
}

/*------------------------------------
12.2 FAQ Item
------------------------------------*/

.faq-item{
    background:var(--white);
    border:1px solid #e5e7eb;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:20px;
    transition:var(--transition);
}

.faq-item[open]{
    border-color:var(--border-gold-hover);
    box-shadow:var(--shadow-sm);
}

.faq-item summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:28px 30px;
    color:var(--primary);
    font-size:1.2rem;
    font-weight:700;
    cursor:pointer;
    list-style:none;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    color:var(--secondary);
    font-size:1.7rem;
    font-weight:400;
    line-height:1;
    transition:transform var(--transition-fast);
}

.faq-item[open] summary::after{
    transform:rotate(45deg);
}

.faq-item p{
    padding:0 30px 28px;
    color:var(--gray);
    line-height:1.8;
    margin:0;
}

/*======================================================================
13. PROJECTS PAGE
======================================================================*/

/*------------------------------------
13.1 Featured Projects
------------------------------------*/

.featured-projects{
    padding:100px 0;
    background:var(--surface);
}

.project-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    color:#fff;
    background:linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.15));
}

.project-overlay h3{
    margin-bottom:10px;
}

.project-overlay p{
    margin:0;
    opacity:.9;
}

/*------------------------------------
13.2 Project Showcase
------------------------------------*/

.project-showcase{

    padding:130px 0;

    background:var(--surface);

}

/*------------------------------------
13.2.1 Masonry Gallery
------------------------------------*/

.masonry-gallery{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    grid-auto-rows:280px;

    gap:30px;

    margin-top:80px;

}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    transition:.45s;
}

.gallery-item.large{

    grid-column:span 2;

    grid-row:span 2;

    min-height:auto;

}

.gallery-item.wide{

    grid-column:span 2;

    grid-row:span 1;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.7s cubic-bezier(.2,.8,.2,1);

}

.gallery-item:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.20);
}

.gallery-item:focus-visible{
    outline:3px solid var(--secondary);
    outline-offset:4px;
}

.gallery-item:hover img{
    transform:scale(1.10);
}

/*------------------------------------
13.2.2 Gallery Overlay
------------------------------------*/

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:28px;
    color:#fff;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.45),
        transparent
    );

    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay span{
    display:inline-block;
    background:rgba(212,175,55,.92);
    color:#172033;
    font-size:.78rem;
    font-weight:700;
    padding:7px 14px;
    border-radius:30px;
    margin-bottom:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.gallery-overlay h3{

    margin:0;

    font-size:1.8rem;

    font-weight:700;

    line-height:1.2;

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);

    pointer-events:none;

}

/*------------------------------------
13.2.3 Image Dialog
------------------------------------*/

.gallery-dialog{
    width:min(92vw,1100px);
    max-width:none;
    padding:0;
    border:0;
    border-radius:var(--radius-lg);
    background:var(--dark);
    color:var(--white);
    box-shadow:var(--shadow-xl);
}

.gallery-dialog::backdrop{
    background:rgba(7,22,43,.82);
    backdrop-filter:blur(5px);
}

.gallery-dialog figure{
    margin:0;
}

.gallery-dialog img{
    width:100%;
    max-height:78vh;
    object-fit:contain;
}

.gallery-dialog figcaption{
    padding:18px 56px 20px 22px;
    font-weight:700;
}

.gallery-dialog-close{
    position:absolute;
    top:12px;
    right:12px;
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    border:1px solid var(--border-light);
    border-radius:50%;
    background:rgba(7,22,43,.72);
    color:var(--white);
    font-size:30px;
    line-height:1;
    cursor:pointer;
}

.gallery-dialog-close:focus-visible{
    outline:3px solid var(--secondary);
    outline-offset:3px;
}

/*------------------------------------
13.3 Project Spotlight
------------------------------------*/

.project-spotlight{

    padding:120px 0;

    background:var(--white);

}

/*------------------------------------
13.3.1 Spotlight Grid
------------------------------------*/

.spotlight-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.spotlight-image{
    overflow:hidden;
    border-radius:24px;
}

.spotlight-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.spotlight-content h2{

    font-size:3rem;

    margin:20px 0;

}

.spotlight-content p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:35px;

}

/*------------------------------------
13.3.2 Spotlight List
------------------------------------*/

.spotlight-list{

    list-style:none;

    padding:0;

    margin:0 0 40px;

}

.spotlight-list li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

    font-weight:600;

}

.spotlight-list i{

    color:var(--secondary);

    font-size:1.3rem;

}

/*======================================================================
14. GLOBAL CTA
======================================================================*/

.cta{

    padding:120px 0;

    background:var(--primary);

    text-align:center;

}

/*------------------------------------
14.1 CTA Content
------------------------------------*/

.cta .container{

    max-width:900px;

    margin:auto;

}

.cta .page-subtitle{

    justify-content:center;

    color:var(--secondary);

    margin-bottom:25px;

}

.cta h2{

    font-size:58px;

    color:#fff;

    line-height:1.1;

    margin-bottom:25px;

}

.cta p{

    max-width:760px;

    margin:0 auto 45px;

    color:#d8e2ef;

    font-size:19px;

    line-height:1.9;

}

/*------------------------------------
14.2 CTA Buttons
------------------------------------*/

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/* ==========================================
GLOBAL OVERFLOW FIX
========================================== */





