/* =====================================================
   SEQUENT TOURS & TRAVELS
   FILE        : pricing.css
   VERSION     : 1.0
   AUTHOR      : Sequent Travels
   DESCRIPTION : Pricing Page
===================================================== */

/* 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:#222;font-size:48px;font-weight:500;line-height:1.2;}
.page-overlay h1 span{color:#D97706;}
.page-overlay p{margin:0;color:#6B7280;font-size:16px;line-height:1.8;}

/* 02. HOW PRICING WORKS */
.pricing-info-section{width:100%;padding:90px 80px;background:#F8FAFC;overflow:hidden;}
.pricing-info-header{width:100%;max-width:760px;margin:0 auto 55px;text-align:center;}
.pricing-info-header>span{display:inline-block;margin-bottom:18px;padding:8px 18px;background:#FFF4E8;color:#D97706;border-radius:999px;font-size:13px;font-weight:600;letter-spacing:.6px;}
.pricing-info-header h2{margin:0 0 18px;color:#222;font-size:42px;font-weight:500;line-height:1.25;}
.pricing-info-header p{margin:0;color:#6B7280;font-size:16px;line-height:1.8;}

/* 03. PRICING INFO GRID */
.pricing-info-grid{width:100%;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.pricing-info-card{min-width:0;min-height:220px;padding:30px 24px;display:flex;flex-direction:column;align-items:center;background:#FFF;border:1px solid rgba(0,0,0,.05);border-radius:22px;box-shadow:0 10px 24px rgba(0,0,0,.05);text-align:center;transition:transform .3s ease,box-shadow .3s ease;}
.pricing-info-card:hover{transform:translateY(-6px);box-shadow:0 16px 32px rgba(0,0,0,.07);}
.pricing-info-card>i{width:68px;height:68px;margin:0 auto 18px;display:flex;align-items:center;justify-content:center;flex-shrink:0;background:#FFF4E8;color:#D97706;border-radius:50%;font-size:30px;line-height:1;}
.pricing-info-card h3{margin:0 0 12px;color:#222;font-size:21px;font-weight:500;line-height:1.4;}
.pricing-info-card p{margin:0;color:#666;font-size:15px;line-height:1.7;}

/* 04. PRICING TABLE SECTION */
.pricing-section{width:100%;padding:80px 60px 110px;background:#FAFAF8;overflow:hidden;}

/* 05. TABLE WRAPPER */
.pricing-table-wrap{width:100%;max-width:1280px;margin:0 auto;overflow-x:auto;background:#FFF;border:1px solid rgba(0,0,0,.05);border-radius:22px;box-shadow:0 8px 22px rgba(0,0,0,.045),0 20px 50px rgba(0,0,0,.025);scrollbar-width:thin;scrollbar-color:#D97706 #F3F4F6;}
.pricing-table-wrap::-webkit-scrollbar{height:8px;}
.pricing-table-wrap::-webkit-scrollbar-thumb{background:#D97706;border-radius:20px;}
.pricing-table-wrap::-webkit-scrollbar-track{background:#F3F4F6;}

/* 06. PRICING TABLE */
.pricing-table{
    width:max-content;
    min-width:100%;

    border-collapse:collapse;
    table-layout:auto;
}
.table-heading{display:flex;flex-direction:column;align-items:center;gap:2px;}
.table-heading span:last-child{font-size:12px;opacity:.75;}
/* =====================================================
   06.1 TABLE HEADER
===================================================== */

.pricing-table thead{
    background:#171C26;
    color:#FFFFFF;
}

.pricing-table th{
    padding:19px 14px;

    background:#171C26;
    color:#FFFFFF;

    font-size:14px;
    font-weight:600;
    line-height:1.45;

    text-align:center;

    border-bottom:1px solid rgba(255,255,255,.12);
}

.pricing-table th:first-child{
    width:240px;
    padding-left:24px;

    position:sticky;
    left:0;
    z-index:3;

    background:#171C26;
    color:#FFFFFF;

    text-align:left;
}
.pricing-table td{padding:16px 14px;color:#6B7280;font-size:14px;line-height:1.5;text-align:center;border-bottom:1px solid #EEE;}
.pricing-table td:first-child{width:240px;padding-left:24px;position:sticky;left:0;z-index:2;color:#222;font-weight:600;text-align:left;}
.pricing-table td:not(:first-child){color:#D97706;font-weight:600;}
.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child){
    min-width:130px;
    white-space:nowrap;
}
.pricing-table th:last-child,.pricing-table td:last-child{padding-right:28px;}
.pricing-table tbody tr{background:#FFF;transition:background .25s ease;}
.pricing-table tbody tr:nth-child(even){background:#F8FAFC;}
.pricing-table tbody tr:nth-child(odd) td:first-child{background:#FFF;}
.pricing-table tbody tr:nth-child(even) td:first-child{background:#F8FAFC;}
.pricing-table tbody tr:hover{background:#FFF7ED;}
.pricing-table tbody tr:hover td:first-child{background:#FFF7ED;}

/* 07. IMPORTANT INFORMATION */
.pricing-notes-section{width:100%;padding:70px 0 0;background:#FAFAF8;}
.pricing-notes-box{width:100%;max-width:1200px;margin:0 auto;padding:35px;background:linear-gradient(135deg,#FFF9F2,#FFFCF8);border:1px solid rgba(217,119,6,.10);border-left:5px solid #D97706;border-radius:18px;box-shadow:0 8px 20px rgba(0,0,0,.04);}
.pricing-notes-title{display:flex;align-items:center;gap:15px;margin-bottom:25px;}
.pricing-notes-title i{flex-shrink:0;color:#D97706;font-size:32px;line-height:1;}
.pricing-notes-title h2{margin:0;color:#222;font-size:30px;font-weight:500;line-height:1.3;}
.pricing-notes-list{margin:0;padding:0;list-style:none;}
.pricing-notes-list li{margin-bottom:16px;display:flex;align-items:flex-start;gap:12px;color:#555;font-size:15px;line-height:1.8;}
.pricing-notes-list li:last-child{margin-bottom:0;}
.pricing-notes-list li i{flex-shrink:0;margin-top:6px;color:#D97706;}

/* 08. PRICING CTA */
.pricing-cta{width:100%;margin-top:80px;padding:90px 20px;background:linear-gradient(135deg,#171C26,#222C39);overflow:hidden;}
.pricing-cta-content{width:100%;max-width:850px;margin:0 auto;color:#FFF;text-align:center;}
.pricing-cta-content>span{display:inline-block;margin-bottom:20px;padding:8px 18px;background:rgba(255,255,255,.12);color:#FFB561;border-radius:999px;font-size:13px;font-weight:600;letter-spacing:.5px;}
.pricing-cta-content h2{margin:0 0 20px;color:#FFF;font-size:42px;font-weight:500;line-height:1.3;}
.pricing-cta-content p{margin:0 0 40px;color:#D5D9E0;font-size:16px;line-height:1.8;}
.pricing-cta-buttons{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:18px;}
.pricing-call-btn,.pricing-whatsapp-btn{min-width:160px;min-height:52px;padding:16px 30px;display:flex;align-items:center;justify-content:center;gap:10px;border-radius:14px;font-size:15px;font-weight:600;line-height:1.3;text-decoration:none;transition:transform .3s ease,box-shadow .3s ease;}
.pricing-call-btn{background:#FFF;color:#171C26;}
.pricing-whatsapp-btn{background:#25D366;color:#FFF;}
.pricing-call-btn:hover,.pricing-whatsapp-btn:hover{transform:translateY(-3px);}
.pricing-call-btn:hover{color:#171C26;box-shadow:0 12px 28px rgba(255,255,255,.10);}
.pricing-whatsapp-btn:hover{color:#FFF;box-shadow:0 12px 28px rgba(37,211,102,.20);}

/* 09. TABLET */
@media(max-width:1024px){
.pricing-info-section{padding:80px 50px;}
.pricing-info-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
.pricing-section{padding:70px 50px 100px;}
.pricing-notes-section{padding-top:60px;}
.pricing-cta{margin-top:70px;padding:80px 40px;}
}

/* 10. MOBILE */
@media(max-width:768px){
.page-hero{height:280px;padding-top:80px;}
.page-overlay h1{font-size:38px;}
.pricing-info-section{padding:70px 24px;}
.pricing-info-header{margin-bottom:44px;}
.pricing-info-header h2{font-size:34px;}
.pricing-info-grid{grid-template-columns:1fr;gap:20px;}
.pricing-info-card{min-height:0;}
.pricing-section{padding:60px 20px 90px;}
.pricing-table{min-width:980px;}
.pricing-table th{padding:14px 10px;font-size:12px;}
.pricing-table td{padding:12px 10px;font-size:13px;}
.pricing-table th:first-child,.pricing-table td:first-child{width:205px;padding-left:18px;}
.pricing-notes-section{padding:50px 0 0;}
.pricing-notes-box{padding:28px 24px;border-left-width:4px;}
.pricing-notes-title h2{font-size:26px;}
.pricing-cta{margin-top:60px;padding:75px 24px;}
.pricing-cta-content h2{font-size:34px;}
}

/* 11. 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;}
.pricing-info-section{padding:60px 20px;}
.pricing-info-header h2{font-size:30px;}
.pricing-info-header p{font-size:15px;}
.pricing-info-card{padding:28px 22px;}
.pricing-section{padding:55px 16px 80px;}
.pricing-table-wrap{border-radius:18px;}
.pricing-notes-section{padding-top:45px;}
.pricing-notes-box{padding:25px 20px;border-radius:16px;}
.pricing-notes-title{gap:12px;margin-bottom:22px;}
.pricing-notes-title i{font-size:27px;}
.pricing-notes-title h2{font-size:23px;}
.pricing-notes-list li{font-size:14px;line-height:1.7;}
.pricing-cta{margin-top:55px;padding:70px 20px;}
.pricing-cta-content h2{font-size:30px;}
.pricing-cta-content p{font-size:15px;}
.pricing-cta-buttons{flex-direction:column;gap:12px;}
.pricing-call-btn,.pricing-whatsapp-btn{width:100%;max-width:320px;}
}


/* =====================================================
   PRICING TABLE LAST COLUMN SPACE FIX
===================================================== */

.pricing-table th:last-child,
.pricing-table td:last-child{
    min-width:180px;
    padding-left:20px;
    padding-right:40px;
}