/* =====================================================
   SEQUENT TOURS & TRAVELS
   FILE        : contact.css
   VERSION     : 1.0
   DESCRIPTION : Contact, Enquiry, Office, Why Choose Us
                 and Contact CTA
===================================================== */

/* =====================================================
   01. PAGE HERO
===================================================== */

.page-hero{
    width:100%;
    height:300px;
    padding-top:90px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#F7F7F7,#FFFFFF);
}

.page-hero::before{
    content:"";
    position:absolute;
    top:-220px;
    left:-220px;
    width:500px;
    height:500px;
    background:rgba(217,119,6,.08);
    border-radius:50%;
    pointer-events:none;
}

.page-hero::after{
    content:"";
    position:absolute;
    right:-260px;
    bottom:-260px;
    width:600px;
    height:600px;
    background:rgba(217,119,6,.05);
    border-radius:50%;
    pointer-events:none;
}

.page-overlay{
    position:relative;
    z-index:2;
    max-width:760px;
    padding:0 24px;
    text-align:center;
}

.page-overlay h1{
    margin:0 0 14px;
    color:#222222;
    font-size:48px;
    font-weight:500;
    line-height:1.2;
}

.page-overlay p{
    margin:0;
    color:#6B7280;
    font-size:16px;
    line-height:1.8;
}

/* =====================================================
   02. CONTACT INFO
===================================================== */

.contact-section{
    width:100%;
    padding:80px 80px;
    background:#FAFAF8;
    overflow:hidden;
}

.contact-grid{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

/* =====================================================
   CONTACT CARDS - DARK DESIGN
===================================================== */

.contact-card{
    min-width:0;
    min-height:210px;

    padding:30px 24px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    background:#171C26;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    box-shadow:
        0 8px 22px rgba(0,0,0,.08),
        0 20px 45px rgba(0,0,0,.04);

    text-align:center;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.contact-card:hover{
    transform:translateY(-5px);

    border-color:rgba(217,119,6,.30);

    box-shadow:
        0 14px 30px rgba(0,0,0,.12),
        0 24px 50px rgba(0,0,0,.06);
}

.contact-card > i{
    width:64px;
    height:64px;

    margin-bottom:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    background:rgba(217,119,6,.14);

    color:#FFB561;

    border-radius:50%;

    font-size:27px;
}

.contact-card h3{
    margin:0 0 12px;

    color:#FFFFFF;

    font-size:20px;
    font-weight:600;
    line-height:1.4;
}

.contact-card p{
    margin:0;

    color:#D5D9E0;

    font-size:15px;
    line-height:1.75;
}

.contact-card .contact-link{
    color:#D5D9E0;
}

.contact-card .contact-link:hover{
    color:#FFB561;
}

/* =====================================================
   03. ENQUIRY SECTION
===================================================== */

.enquiry-section{
    width:100%;
    padding:90px 80px;
    background:#F5F6F7;
    overflow:hidden;
}

.enquiry-wrapper{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:60px;
    align-items:center;
}

.enquiry-left > span,
.section-title > span,
.why-header > span,
.cta-wrapper > span{
    display:inline-block;
    margin-bottom:18px;
    color:#D97706;
    font-size:13px;
    font-weight:600;
    letter-spacing:.8px;
}

.enquiry-left h2{
    margin:0 0 20px;
    color:#222222;
    font-size:42px;
    font-weight:500;
    line-height:1.25;
}

.enquiry-left > p{
    margin:0 0 30px;
    color:#666666;
    font-size:16px;
    line-height:1.85;
}

.enquiry-features{
    margin:0;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px 20px;
    list-style:none;
}

.enquiry-features li{
    display:flex;
    align-items:center;
    gap:10px;
    color:#374151;
    font-size:15px;
    line-height:1.5;
}

.enquiry-features li i{
    flex-shrink:0;
    color:#D97706;
    font-size:18px;
}

/* =====================================================
   04. ENQUIRY FORM
===================================================== */

.enquiry-form{
    width:100%;
    padding:34px;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    background:#FFFFFF;
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    box-shadow:0 12px 32px rgba(0,0,0,.055);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea{
    width:100%;
    min-width:0;
    padding:15px 16px;
    background:#FAFAFA;
    color:#222222;
    border:1px solid #E5E7EB;
    border-radius:11px;
    outline:none;
    font-family:inherit;
    font-size:14px;
    transition:border-color .25s ease,box-shadow .25s ease,background .25s ease;
}

.enquiry-form input,
.enquiry-form select{
    min-height:52px;
}

.enquiry-form textarea{
    min-height:130px;
    resize:vertical;
    grid-column:1 / -1;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus{
    background:#FFFFFF;
    border-color:rgba(217,119,6,.55);
    box-shadow:0 0 0 4px rgba(217,119,6,.08);
}

.enquiry-form button{
    min-height:54px;
    padding:15px 28px;
    grid-column:1 / -1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#25D366;
    color:#FFFFFF;
    border:none;
    border-radius:12px;
    font-family:inherit;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}

.enquiry-form button:hover{
    transform:translateY(-2px);
    background:#20BD5A;
    box-shadow:0 12px 26px rgba(37,211,102,.20);
}

/* =====================================================
   05. OFFICE SECTION
===================================================== */

.office-section{
    width:100%;
    padding:90px 80px 105px;
    background:#FAFAF8;
    overflow:hidden;
}

.section-title,
.why-header{
    width:100%;
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

.section-title h2,
.why-header h2{
    margin:0 0 16px;
    color:#222222;
    font-size:42px;
    font-weight:500;
    line-height:1.25;
}

.section-title p,
.why-header p{
    margin:0;
    color:#6B7280;
    font-size:16px;
    line-height:1.8;
}

.office-wrapper{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);
    overflow:hidden;
    background:#FFFFFF;
    border:1px solid rgba(0,0,0,.05);
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.office-map{
    min-height:430px;
    overflow:hidden;
}

.office-map a,
.office-map img{
    width:100%;
    height:100%;
    display:block;
}

.office-map img{
    object-fit:cover;
    transition:transform .4s ease;
}

.office-map:hover img{
    transform:scale(1.025);
}

.office-details{
    padding:48px 42px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.office-details h3{
    margin:0 0 18px;
    color:#222222;
    font-size:30px;
    font-weight:500;
}

.office-details > p{
    margin:0 0 26px;
    color:#666666;
    font-size:15px;
    line-height:1.9;
}

.office-info{
    margin-bottom:28px;
}

.office-info p{
    margin:0 0 14px;
    display:flex;
    align-items:flex-start;
    gap:12px;
    color:#555555;
    font-size:15px;
    line-height:1.6;
}

.office-info p:last-child{
    margin-bottom:0;
}

.office-info i{
    flex-shrink:0;
    margin-top:3px;
    color:#D97706;
}

.office-map-btn{
    width:max-content;
    min-height:50px;
    padding:14px 24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    background:#D97706;
    color:#FFFFFF;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}

.office-map-btn:hover{
    transform:translateY(-2px);
    background:#C96D05;
    color:#FFFFFF;
    box-shadow:0 12px 26px rgba(217,119,6,.18);
}

/* =====================================================
   06. WHY CHOOSE US
===================================================== */

.why-section{
    width:100%;
    padding:90px 80px 110px;
    background:#F5F6F7;
    overflow:hidden;
}

.why-grid{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}

.why-card{
    min-width:0;
    min-height:230px;
    padding:30px 24px;
    display:flex;
    flex-direction:column;
    align-items:center;
    background:#FFFFFF;
    border:1px solid rgba(0,0,0,.05);
    border-radius:22px;
    box-shadow:0 8px 22px rgba(0,0,0,.04);
    text-align:center;
    transition:transform .3s ease,box-shadow .3s ease;
}

.why-card:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 30px rgba(0,0,0,.07);
}

.why-card > i{
    width:64px;
    height:64px;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#FFF4E8;
    color:#D97706;
    border-radius:50%;
    font-size:28px;
}

.why-card h3{
    margin:0 0 12px;
    color:#222222;
    font-size:20px;
    font-weight:600;
    line-height:1.4;
}

.why-card p{
    margin:0;
    color:#666666;
    font-size:15px;
    line-height:1.7;
}

/* =====================================================
   07. CONTACT CTA
===================================================== */

/* =====================================================
   CONTACT CTA - CENTERED CARD
===================================================== */

.cta-section{
    width:calc(100% - 160px);
    max-width:1280px;

    margin:90px auto;

    padding:75px 40px;

    background:#171C26;

    box-shadow:
        0 12px 30px rgba(0,0,0,.08),
        0 24px 55px rgba(0,0,0,.04);

    overflow:hidden;
}

.cta-wrapper{
    width:100%;
    max-width:850px;
    margin:0 auto;
    text-align:center;
}

.cta-wrapper > span{
    color:#FFB561;
}

.cta-wrapper h2{
    margin:0 0 20px;
    color:#FFFFFF;
    font-size:42px;
    font-weight:500;
    line-height:1.3;
}

.cta-wrapper > p{
    margin:0 auto 38px;
    max-width:760px;
    color:#D5D9E0;
    font-size:16px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

.cta-call,
.cta-whatsapp{
    min-width:160px;
    min-height:52px;
    padding:15px 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:transform .3s ease,box-shadow .3s ease;
}

.cta-call{
    background:#FFFFFF;
    color:#171C26;
}

.cta-whatsapp{
    background:#25D366;
    color:#FFFFFF;
}

.cta-call:hover,
.cta-whatsapp:hover{
    transform:translateY(-3px);
}

.cta-call:hover{
    color:#171C26;
    box-shadow:0 12px 28px rgba(255,255,255,.10);
}

.cta-whatsapp:hover{
    color:#FFFFFF;
    box-shadow:0 12px 28px rgba(37,211,102,.20);
}

/* =====================================================
   08. TABLET
===================================================== */

@media(max-width:1024px){

    .contact-section,
    .enquiry-section,
    .office-section,
    .why-section{
        padding-left:50px;
        padding-right:50px;
    }

    .contact-grid,
    .why-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .enquiry-wrapper{
        grid-template-columns:1fr;
        gap:45px;
    }

    .enquiry-left{
        max-width:760px;
    }

    .office-wrapper{
        grid-template-columns:1fr 1fr;
    }

}

/* =====================================================
   09. MOBILE
===================================================== */

@media(max-width:768px){

    .page-hero{
        height:280px;
        padding-top:80px;
    }

    .page-overlay h1{
        font-size:38px;
    }

    .contact-section{
        padding:70px 24px;
    }

    .contact-grid,
    .why-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .contact-card{
        min-height:0;
    }

    .enquiry-section{
        padding:70px 24px;
    }

    .enquiry-left h2,
    .section-title h2,
    .why-header h2,
    .cta-wrapper h2{
        font-size:34px;
    }

    .enquiry-features{
        grid-template-columns:1fr;
    }

    .enquiry-form{
        padding:28px 24px;
        grid-template-columns:1fr;
    }

    .enquiry-form textarea,
    .enquiry-form button{
        grid-column:auto;
    }

    .office-section{
        padding:70px 24px 90px;
    }

    .section-title,
    .why-header{
        margin-bottom:42px;
    }

    .office-wrapper{
        grid-template-columns:1fr;
    }

    .office-map{
        min-height:330px;
    }

    .office-details{
        padding:36px 30px;
    }

    .why-section{
        padding:70px 24px 90px;
    }

    .why-card{
        min-height:0;
    }

    .cta-section{
        padding:75px 24px;
    }

}

/* =====================================================
   10. SMALL MOBILE
===================================================== */

@media(max-width:430px){

    .page-hero{
        height:250px;
    }

    .page-overlay{
        padding:0 20px;
    }

    .page-overlay h1{
        font-size:31px;
    }

    .page-overlay p{
        font-size:15px;
    }

    .contact-section,
    .enquiry-section,
    .office-section,
    .why-section{
        padding-left:20px;
        padding-right:20px;
    }

    .contact-card,
    .why-card{
        padding:27px 22px;
        border-radius:18px;
    }

    .enquiry-left h2,
    .section-title h2,
    .why-header h2,
    .cta-wrapper h2{
        font-size:30px;
    }

    .enquiry-left > p,
    .section-title p,
    .why-header p,
    .cta-wrapper > p{
        font-size:15px;
    }

    .enquiry-form{
        padding:24px 20px;
        border-radius:20px;
    }

    .office-wrapper{
        border-radius:20px;
    }

    .office-map{
        min-height:270px;
    }

    .office-details{
        padding:32px 24px;
    }

    .office-details h3{
        font-size:27px;
    }

    .office-map-btn{
        width:100%;
    }

    .cta-section{
        padding:70px 20px;
    }

    .cta-buttons{
        flex-direction:column;
        gap:12px;
    }

    .cta-call,
    .cta-whatsapp{
        width:100%;
        max-width:320px;
    }

}


@media (max-width:1024px){

    .cta-section{
        width:calc(100% - 100px);

        margin:75px auto;

        padding:70px 40px;
    }

}

@media (max-width:768px){

    .cta-section{
        width:calc(100% - 48px);

        margin:65px auto;

        padding:65px 28px;

        border-radius:22px;
    }

}

@media (max-width:430px){

    .cta-section{
        width:calc(100% - 40px);

        margin:55px auto;

        padding:60px 22px;


    }

}

/* ==========================================
   CLICKABLE LOCATION CARD
========================================== */

.contact-card-link{

    display:block;
    color:inherit;
    text-decoration:none;

}

.contact-card-link:hover{

    color:inherit;
    text-decoration:none;

}

.contact-card-link .contact-card{

    cursor:pointer;

}


.contact-card{

    display:flex;
    flex-direction:column;
    align-items:center;

}

.contact-card h3{

    margin-top:18px;
    margin-bottom:18px;

}

.contact-card p{

    min-height:60px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;

}


/* to reduce gap between contact card call us in contact.html */

.contact-phone-list {
    display: flex;
    flex-direction: column;
    gap: 2px; /* Adjust to 0px, 2px, 4px as you like */
    margin: 0;
}

.contact-link {
    display: inline-block;
    margin: 0;
}

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