 :root {
   --brand-blue: #18a9d8;
   --deep-blue: #0da0d6;
   --dark: #0b3b4a;
   --muted: #6c757d;
   --card-shadow: 0 8px 20px rgba(12, 60, 80, 0.08);
 }

 body {
   font-family: "Open Sans", sans-serif;
   background: #f6f9fb;
   color: #222;
 }

 /* NAV */
 .topbar {
   background: var(--brand-blue);
 }

 .topbar .navbar-brand img {
   height: 46px
 }

 .search-bar {
   background: #fff;
   border-radius: 4px;
   padding: 6px 10px
 }

 /* HERO */
 .hero {
   background: linear-gradient(180deg, var(--brand-blue), #09a2d2);
   color: #fff;
   padding: 60px 0 50px
 }

 .hero .lead {
   opacity: .95
 }

 .hero .cta {
   background: #053d47;
   border-radius: 6px;
   padding: 12px 28px;
   color: #fff;
   font-weight: 700;
   text-decoration: none;
   display: inline-block;
 }

 .hero .phone-mock {
   max-width: 80%;
 }

 .hero .icons-row {
   font-size: 18px;
   font-weight: 600;
 }

 .hero .icons-row img {
   height: 38px;
   margin-right: 10px
 }

 /* NUMBERS GRID */
 .numbers-section {
   padding: 45px 0;
   background: #fff;
 }

 .numbers-section h2 {
   color: #0b5160;
   font-weight: 600;
   font-size: 36px;
   margin-bottom: 12px;
 }

 .title-sub-line {
   font-size: 18px;
   font-weight: 400;
   color: #2f2f2f;
 }

 .num-card {
   background: #fff;
   border-radius: 8px;
   box-shadow: var(--card-shadow);
   padding: 15px 0;
   text-align: center;
   border: 1px solid #eee
 }

 .num-card .title {
   font-weight: 700;
   color: #0a5b68;
   margin-bottom: 12px
 }

 .keypad {
   display: inline-block;
   background: #fff;
   padding: 10px;
   border-radius: 6px;
   border: 1px solid #e6e6e6
 }

 .keypad img {
   max-width: 100%;

 }

 .keypad .row {
   margin-bottom: 6px
 }

 .keypad .digit {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 44px;
   height: 44px;
   background: #111;
   color: #fff;
   border-radius: 6px;
   margin: 4px;
   font-weight: 700
 }

 .price {
   font-size: 20px;
   font-weight: 700;
   margin-top: 12px
 }

 .price .strike {
   color: #b2b2b2;
   text-decoration: line-through;
   font-weight: 600
 }

 .card-footer-actions {
   margin-top: 14px
 }

 .btn-reserve {
   background: #17b0df;
   border: none;
   color: #fff
 }

 .btn-activate {
   background: #ff3b30;
   border: none;
   color: #fff
 }

 .or-sep {
   display: inline-block;
   padding: 0 8px;
   color: #888;
   font-weight: 600
 }

 /* Vanity */
 .vanity {
   padding: 45px 0;
   background: #fff
 }

 .vanity h3 {
   color: #1daade;
   font-weight: 700;
   font-size: 36px;
   margin-bottom: 20px;

 }

 .vanity .dial {
   /* background: #f4f8fb;
   border-radius: 12px;
   padding: 24px;
   text-align: center */
   background: #fff;
   border-radius: 8px;
   box-shadow: var(--card-shadow);
   padding: 18px;
   text-align: center;
   border: 1px solid #eee;
 }

 .vanity .dial img {
   max-width: 100%;
 }

 .dial .circle {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 8px auto;
   box-shadow: 0 4px 10px rgba(20, 40, 60, 0.06)
 }

 .vanity p {
   font-size: 18px;
   font-weight: 400;
   margin: 12px 0;
   line-height: 34px;
 }

 .vanity p strong {
   font-weight: 600;
 }

 .example-pattern {
   margin-top: 20px;

 }

 .example-pattern img {
   max-width: 100%;
 }

 /* Premium */
 .premium {
   background: var(--brand-blue);
   color: #fff;
   padding: 40px 0
 }

 .premium .card {
   background: linear-gradient(180deg, #0f8fb0 0, #0b6b8a 100%);
   border-radius: 8px;
   padding: 18px;
   color: #fff;
   border: 0
 }

 .premium .card img {
   width: 100%;
   border-radius: 6px
 }

 /* Footer */
 footer {
   background: #fff;
   padding: 40px 0 0;
   color: #12383f;
 }

 .payment-logos img {
   height: 34px;
   margin-right: 8px
 }

 .subscribe-box {
   background: #0da0d6;
   color: #fff;
   padding: 18px;
   border-radius: 6px
 }

 .copyright {
   background: #052b34;
   color: #fff;
   padding: 14px 0;
   text-align: center;
   font-size: 13px
 }

 /* Responsiveness tweaks */
 @media (max-width:991px) {
   .hero {
     padding: 38px 0
   }

   .hero .phone-mock {
     max-width: 180px
   }
 }

 .topbar .navbar-brand img {
   height: 65px;
   background: #fff;
   padding: 6px;
   border-radius: 6px;
   border: 1px solid #08475f;
 }

 .btn-dark {
   background-color: #12383f;
 }

 .nav-link {
   display: block;
   padding: 0.5rem 1rem;
   font-size: 15px;
   font-weight: 600;
   color: #222222;
   text-decoration: none;
   background: 0 0;
   border: 0;
 }

 .top-search-bar {
   padding: 5px;
   background: #f8f9fb;
   border: 1px solid #d5dada;
   border-radius: 5px;
 }

 .top-search-bar .btn-tab {
   min-width: 90px;
 }

 .hero .lead {
   font-size: 20px;
   font-weight: 600;
   line-height: 39px;
 }

 .section-title {
   margin-bottom: 20px;
 }

 .section-title .main-title {
   font-size: 36px;
   font-weight: 600;
   margin: 0px 0px 15px 0px;
   padding: 0px;
 }

 .section-title .sub-title {
   font-size: 18px;
   font-weight: 400;
   color: #2f2f2f;
   padding: 0px;
   margin: 0 0 10px 0;
   display: inline-block;
 }

 .footer p {
   line-height: 30px;
   font-size: 16px;
   color: #222222;
   font-weight: 400;

 }

 .footer .list-unstyled {
   padding: 0;
   margin: 0;
   padding-left: 0;
   list-style: none;
 }

 .footer .list-unstyled li {
   padding: 5px 0;
   margin: 0;
   list-style: none;
 }


 .footer .list-unstyled li a {
   color: #222222;
   font-weight: 500;
   font-size: 16px;
   text-decoration: none;
 }

 .footer h6 {
   font-size: 20px;
   color: #08475f;
   font-weight: 600;
   margin: 0 0 10px 0;
 }

 .subscribe-form input {
   border-radius: 6px;
   border: 1px solid #d5dada;
   padding: 12px 10px;
   width: 100%;
   margin: 0 0 12px 0;
 }

 .payment_icons {
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .payment_icons .icon-div {
   width: 100px;
   height: 100px;
   margin: 0 5px;
   padding: 0px;
 }

 .payment_icons .icon-div img {
   max-width: 100%;
   display: block;
 }




 .layout-container {
   display: flex;
   width: 100%;
   min-height: ;
   position: relative;
 }

 /* Left Section */
 .left-section {
   width: 260px;
   flex-shrink: 0;
   background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
   overflow-y: auto;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border-right: 2px solid #dee2e6;
   box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
   z-index: 100;
 }

 .left-section.closed {
   margin-left: 0;
   width: 0;
   border-right: none;
 }

 .states-header {
   padding: 20px;
   background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
   color: white;
   font-size: 18px;
   font-weight: bold;
   text-align: center;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .states-list {
   padding: 10px;
 }

 .state-item {
   padding: 12px 15px;
   margin: 5px 0;
   border-radius: 6px;
   cursor: pointer;
   transition: all 0.3s ease;
   color: #495057;
   font-size: 15px;
 }

 .state-item:hover {
   background-color: #0088cc;
   color: white;
   transform: translateX(5px);
   box-shadow: 0 2px 8px rgba(0, 136, 204, 0.3);
 }

 /* Middle Section */
 .middle-section {
   flex: 1;
   width: 100%;
   overflow-y: auto;
   padding: 15px 0px;
   background: #ffffff;
   position: relative;
 }

 .content-header {
   text-align: center;
   color: #d32f2f;
   font-size: 32px;
   font-weight: bold;
   margin-bottom: 40px;
   text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
 }

 .search-container {
   max-width: 900px;
   margin: 0 auto 40px;
   display: flex;
   gap: 10px;
   align-items: center;
 }

 .search-input {
   flex: 1;
   padding: 15px 20px;
   font-size: 16px;
   border: 2px solid #dee2e6;
   border-radius: 8px;
   transition: all 0.3s ease;
 }

 .search-input:focus {
   outline: none;
   border-color: #0088cc;
   box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
 }

 .search-btn {
   padding: 15px 35px;
   background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
   color: white;
   border: none;
   font-size: 16px;
   font-weight: bold;
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
 }

 .search-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 15px rgba(211, 47, 47, 0.4);
 }

 .filter-buttons {
   text-align: center;
   margin-bottom: 30px;
 }

 .filter-label {
   font-weight: bold;
   color: #495057;
   margin-right: 15px;
 }

 .filter-btn {
   padding: 8px 20px;
   margin: 5px;
   background: white;
   border: 2px solid #dee2e6;
   border-radius: 20px;
   cursor: pointer;
   transition: all 0.3s ease;
   font-size: 14px;
 }

 .filter-btn:hover {
   background: #0088cc;
   color: white;
   border-color: #0088cc;
 }

 .phone-numbers-section {
   background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
   color: white;
   padding: 20px;
   text-align: center;
   font-size: 24px;
   font-weight: bold;
   margin: 40px 0 30px;
   border-radius: 10px;
   box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
 }

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

 .phone-card {
   background: white;
   border: 2px solid #dee2e6;
   border-radius: 12px;
   padding: 25px;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
 }

 .phone-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   border-color: #0088cc;
 }

 .phone-number {
   font-size: 28px;
   color: #0088cc;
   font-weight: bold;
   margin: 15px 0;
 }

 .phone-location {
   color: #6c757d;
   font-size: 14px;
   margin-bottom: 20px;
 }

 .view-details-btn {
   padding: 10px 25px;
   background: #d32f2f;
   color: white;
   border: none;
   border-radius: 6px;
   cursor: pointer;
   font-size: 14px;
   font-weight: bold;
   transition: all 0.3s ease;
 }

 .view-details-btn:hover {
   background: #b71c1c;
   transform: scale(1.05);
 }

 .reserved-badge {
   display: inline-block;
   background: #d32f2f;
   color: white;
   padding: 5px 15px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: bold;
   margin-bottom: 10px;
 }

 /* Right Section */
 .right-section {
   width: 260px;
   flex-shrink: 0;
   background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
   overflow-y: auto;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   border-left: 2px solid #dee2e6;
   box-shadow: -2px 0 10px rgba(0, 0, 0, 0.05);
   z-index: 100;
 }

 .right-section.closed {
   margin-right: 0;
   width: 0;
   border-left: none;
 }

 .user-signin-header {
   padding: 20px;
   background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
   color: white;
   text-align: center;
   font-size: 18px;
   font-weight: bold;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .login-form {
   padding: 25px;
 }

 .form-input {
   width: 100%;
   padding: 12px 15px;
   margin: 10px 0;
   border: 2px solid #dee2e6;
   border-radius: 6px;
   font-size: 14px;
   transition: all 0.3s ease;
 }

 .form-input:focus {
   outline: none;
   border-color: #0088cc;
 }

 .login-btn {
   width: 100%;
   padding: 12px;
   background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
   color: white;
   border: none;
   border-radius: 6px;
   font-size: 15px;
   font-weight: bold;
   cursor: pointer;
   margin: 15px 0;
   transition: all 0.3s ease;
 }

 .login-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
 }

 .menu-links {
   padding: 10px;
 }

 .menu-item {
   padding: 14px 20px;
   margin: 8px 0;
   background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
   color: white;
   text-align: center;
   cursor: pointer;
   border-radius: 6px;
   font-size: 15px;
   font-weight: 500;
   transition: all 0.3s ease;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
 }

 .menu-item:hover {
   transform: translateX(-5px);
   box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
 }

 .menu-item.special {
   background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
 }

 .menu-item.reserved {
   background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
 }

 /* Toggle Buttons */
 .toggle-btn {
   position: fixed;
   top: 50%;
   transform: translateY(-50%);
   background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
   color: white;
   border: none;
   padding: 18px 10px;
   cursor: pointer;
   z-index: 1000;
   font-size: 20px;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
   font-weight: bold;
 }

 .toggle-btn:hover {
   background: linear-gradient(135deg, #006699 0%, #004466 100%);
   transform: translateY(-50%) scale(1.1);
 }

 .toggle-left {
   left: 0;
   border-radius: 0 8px 8px 0;
   transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .left-section.closed~.toggle-left {
   left: 0;
 }

 .left-section:not(.closed)~.toggle-left {
   left: 0;
 }

 .toggle-right {
   right: 0;
   border-radius: 8px 0 0 8px;
   transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .right-section.closed~.toggle-right {
   right: 0;
 }

 .right-section:not(.closed)~.toggle-right {
   right: 0;
 }



 /* Left Section */
 /* .left-section {
   width: 320px;
   flex-shrink: 0;
   background-color: #f8f9fa;
   overflow-y: auto;
   transition: margin-left 0.3s ease, width 0.3s ease;
   border-right: 1px solid #ddd;
 }

 .left-section.closed {
   margin-left: 0;
   width: 0;
 } */

 /* Middle Section */
 /* .middle-section {
   flex: 1;
   width: 100%;
   overflow-y: auto;
   padding: 20px;
   background-color: #fff;
   position: relative;
 } */

 /* Right Section */
 /* .right-section {
   width: 320px;
   flex-shrink: 0;
   background-color: #f8f9fa;
   overflow-y: auto;
   transition: margin-right 0.3s ease, width 0.3s ease;
   border-left: 1px solid #ddd;
 }

 .right-section.closed {
   margin-right: 0;
   width: 0;
 } */

 /* Toggle Buttons */
 /* .toggle-btn {
   position: fixed;
   top: 50%;
   transform: translateY(-50%);
   background-color: #0088cc;
   color: white;
   border: none;
   padding: 15px 8px;
   cursor: pointer;
   z-index: 1000;
   border-radius: 0 5px 5px 0;
   transition: all 0.3s ease;
   font-size: 18px;
   box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
 }

 .toggle-btn:hover {
   background-color: #006699;
 }

 .toggle-left {
   left: 0;
   transition: left 0.3s ease;
 }

 .left-section.closed~.toggle-left {
   left: 0;
 }

 .left-section:not(.closed)~.toggle-left {
   left: 0;
 }

 .toggle-right {
   right: 0;
   border-radius: 5px 0 0 5px;
   transition: right 0.3s ease;
 }

 .right-section.closed~.toggle-right {
   right: 0;
 }

 .right-section:not(.closed)~.toggle-right {
   right: 0;
 } */


 /* Sample Content Styling */
 .states-list {
   padding: 15px;
 }

 .state-item {
   padding: 10px;
   border-bottom: 1px solid #e0e0e0;
   cursor: pointer;
 }

 .state-item:hover {
   background-color: #e9ecef;
 }

 .user-panel {
   padding: 20px;
 }

 .menu-item {
   padding: 12px 20px;
   margin: 5px 0;
   background-color: #0088cc;
   color: white;
   text-align: center;
   cursor: pointer;
   border-radius: 4px;
 }

 .menu-item:hover {
   background-color: #006699;
 }

 .content-header {
   text-align: center;
   color: #d32f2f;
   font-size: 28px;
   margin-bottom: 30px;
 }

 /* @media (max-width: 768px) {

   .left-section,
   .right-section {
     position: fixed;
     height: 100vh;
     z-index: 999;
   }

   .left-section {
     left: 0;
   }

   .right-section {
     right: 0;
   }
 } */



 .sidebar-title {
   background: #0088cc;
   color: white;
   padding: 10px 15px;
   font-weight: bold;
   font-size: 13px;
   text-transform: uppercase;
 }

 .sidebar-nav {
   padding: 0;
   margin: 0;
   list-style: none;
 }

 .sidebar-nav li {
   border-bottom: 1px solid #f0f0f0;
 }

 .sidebar-nav li:last-child {
   border-bottom: none;
 }

 .sidebar-nav a {
   display: block;
   padding: 8px 15px;
   color: #333;
   text-decoration: none;
   font-size: 14px;
   border-left: 3px solid transparent;
 }

 .sidebar-nav a:hover {
   background: #f8f8f8;
   border-left-color: #0088cc;
   color: #0088cc;
 }

 .sidebar-nav a.active {
   background: #e8f4f8;
   border-left-color: #0088cc;
   color: #0088cc;
   font-weight: bold;
 }


 /* Sign In Box */
 .signin-box {
   background: #f9f9f9;
   padding: 15px;
   border: 1px solid #ddd;
   margin-bottom: 15px;
 }

 .signin-box h5 {
   font-size: 15px;
   font-weight: 600;
   color: #0088cc;
   margin-bottom: 10px;
 }

 .signin-box input {
   width: 100%;
   height: 36px;
   border: 1px solid #ccc;
   padding: 0 10px;
   margin-bottom: 8px;
   font-size: 13px;
 }

 .signin-box .btn {
   width: 100%;
   height: 34px;
   background: #0088cc;
   border: none;
   color: white;
   font-size: 15px;
   font-weight: 600;
 }

 .signin-box .links {
   text-align: center;
   margin-top: 8px;
   font-size: 14px;
 }

 .signin-box .links a {
   color: #0088cc;
 }

 /* Action Buttons */
 .action-btn {
   display: block;
   width: 100%;
   padding: 8px;
   margin-bottom: 5px;
   background: #0088cc;
   color: white;
   text-align: center;
   text-decoration: none;
   font-size: 14px;
   font-weight: 500;
   border-radius: 3px;
 }

 .action-btn:hover {
   background: #006699;
   color: white;
 }

 .action-btn.red {
   background: #dd5544;
 }

 .action-btn.red:hover {
   background: #cc4433;
 }

 .action-btn.green {
   background: #66bb66;
 }

 .action-btn.green:hover {
   background: #55aa55;
 }



 /* Responsive Design */
 @media (max-width: 1200px) {
   .middle-section {
     padding: 15px 0px;
   }

   .content-header {
     font-size: 28px;
   }
 }

 @media (max-width: 1024px) {
   .left-section {
     width: 220px;
   }

   .left-section.closed {
     margin-left: 0;
   }

   .left-section:not(.closed)~.toggle-left {
     left: 0;
   }

   .right-section {
     width: 220px;
   }

   .right-section.closed {
     margin-right: 0;
   }

   .right-section:not(.closed)~.toggle-right {
     right: 0;
   }

   .phone-grid {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 768px) {

   .left-section,
   .right-section {
     position: fixed;
     height: 100vh;
     z-index: 999;
     top: 0;
   }

   .left-section {
     left: 0;
     width: 260px;
     margin-left: -260px;
   }

   .left-section:not(.closed) {
     margin-left: 0;
   }

   .left-section:not(.closed)~.toggle-left {
     left: 260px;
   }

   .right-section {
     right: 0;
     width: 260px;
     margin-right: -260px;
   }

   .right-section:not(.closed) {
     margin-right: 0;
   }

   .right-section:not(.closed)~.toggle-right {
     right: 260px;
   }

   .middle-section {
     padding: 20px 15px;
   }

   .content-header {
     font-size: 24px;
     margin-bottom: 25px;
   }

   .search-container {
     flex-direction: column;
   }

   .search-btn {
     width: 100%;
   }
 }

 @media (max-width: 480px) {
   .left-section {
     width: 75%;
     max-width: 260px;
   }

   .left-section.closed {
     margin-left: -100%;
   }

   .right-section {
     width: 85%;
     max-width: 260px;
   }

   .right-section.closed {
     margin-right: -100%;
   }

   .content-header {
     font-size: 20px;
   }

   .toggle-btn {
     padding: 15px 8px;
     font-size: 18px;
   }

   .phone-number {
     font-size: 24px;
   }
 }

 /* navbar toggler icon custom (visible on brand bg) */
 .navbar-toggler {
   width: 46px;
   height: 36px;
   background: rgba(255, 255, 255, 0.06);
   border-radius: 6px;
   border: none;
 }

 .navbar-toggler-icon-custom {
   display: inline-block;
   width: 20px;
   height: 14px;
   position: relative;
 }

 .navbar-toggler-icon-custom span {
   display: block;
   height: 2px;
   width: 18px;
   background: white;
   border-radius: 2px;
   position: absolute;
   left: 1px;
 }

 .navbar-toggler-icon-custom span:nth-child(1) {
   top: 2px;
 }

 .navbar-toggler-icon-custom span:nth-child(2) {
   top: 6px;
 }

 .navbar-toggler-icon-custom span:nth-child(3) {
   top: 10px;
 }

 .topbar .nav-link {
   color: #fff !important;
 }

 .topbar .btn-outline-light {
   color: #fff;
   border-color: rgba(255, 255, 255, 0.25);
 }

 @media (max-width: 575.98px) {
   .bottombar .form-control-sm {
     /* width: 100px !important; */
   }

   .topbar .brand-img {
     height: 48px;
     padding: 4px;
   }
 }

 @media(min-width:992px) {
   .mobile-only {
     display: none !important;
   }
 }