/* ===========================
   CSS VARIABLES
   =========================== */
:root {
    /* Primary Colors */
    --primary-blue: #0170B9;
    --dark-blue: #0C379A;
    --medium-blue: #1558a8;
    --light-blue: #1368E7;
    --navy-blue: #01257D;
    
    /* Secondary Colors */
    --orange-primary: #FF7800;
    --orange-light: #FF9000;
    --orange-bright: #ff8c00;
    --red-accent: #FF0000;
    
    /* Neutral Colors */
    --color-dark: #3a3a3a;
    --color-text: #4B4F58;
    --color-gray: #808285;
    --color-light-gray: #F5F5F5;
    --color-white: #FFFFFF;
    --color-border: #dddddd;
    --color-off-white: #fafafa;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --font-rosario: "Rosario", sans-serif;
    --font-roboto: "Roboto", sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.44rem;
    --spacing-sm: 0.67rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2.25rem;
    
    /* Border Radius */
    --radius-sm: 3px;
    --radius-md: 5px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 50px;
}
/* ===========================
   VARIABLES for hero section 
   =========================== */
:root {
    --navy: #01257D;
    --orange: #FF7800;
    --orange-hover: #ff8c00;
    --white: #FFFFFF;
    --light-bg: #F5F5F5;

}
/* ===========================
   BASE RESET & DEFAULTS
   =========================== */

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 0;
    line-height: 1.6;
    color: var(--color-gray);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Selection Styling */
::selection {
    background-color: var(--orange-primary);
    color: var(--color-white);
}

::-moz-selection {
    background-color: var(--orange-primary);
    color: var(--color-white);
}
/* ===========================
   TOP INFO BAR
   =========================== */
.top-info-bar {
    background: linear-gradient(135deg, #01257D 0%, #011d5f 100%);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1100;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1100;
}

.top-left-links,
.top-right-links {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1100;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    opacity: 0.9;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.info-link:hover {
    opacity: 1;
}

.info-link i {
    font-size: 14px;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    cursor: pointer;
    transition: opacity 0.3s ease;
    position: relative;
}

.language-selector:hover {
    opacity: 0.9;
}

.flag-icon {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

.language-selector > i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-selector.active > i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Language Dropdown Menu */
.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--color-white);
    min-width: 150px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1200;
}

.language-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.language-option:hover {
    background: var(--color-light-gray);
    color: var(--orange-primary);
}

.language-option.active {
    background: rgba(255, 120, 0, 0.1);
    color: var(--orange-primary);
}

.language-option .flag-icon {
    width: 20px;
    height: 14px;
}

/* Currency Switcher - Desktop */
.currency-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.currency-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.currency-btn.active {
    opacity: 1;
    background: rgba(255, 120, 0, 0.2);
    color: var(--orange-primary);
}

.currency-btn i {
    font-size: 12px;
}

.currency-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Currency Dropdown - Mobile */
.currency-dropdown {
    display: none;
    position: relative;
}

.currency-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.currency-dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.currency-dropdown-btn.active {
    background: rgba(255, 120, 0, 0.2);
    border-color: var(--orange-primary);
}

.currency-dropdown-btn i {
    font-size: 12px;
}

.currency-dropdown-btn .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.currency-dropdown-btn.active .fa-chevron-down {
    transform: rotate(180deg);
}

.currency-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background: var(--color-white);
    min-width: 120px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1200;
}

.currency-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.currency-option:hover {
    background: var(--color-light-gray);
    color: var(--orange-primary);
}

.currency-option.active {
    background: rgba(255, 120, 0, 0.1);
    color: var(--orange-primary);
}

.currency-option i {
    font-size: 12px;
}

/* ===========================
   MAIN HEADER
   =========================== */
.main-header {
    background: var(--navy-blue);
    padding: 12px 0;
    position: relative;
    z-index: 1050;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Brand Logo */
.brand-logo {
    position: relative;
    z-index: 1060;
}

.brand-logo a {
    display: block;
}

.logo-image {
    height: 35px;
    width: auto;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    cursor: pointer;
}

.nav-item:hover {
    opacity: 0.85;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 12px;
    z-index: 1070;
}

.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item i {
    font-size: 16px;
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background: linear-gradient(to right, rgba(1, 112, 185, 0.05), transparent);
    color: var(--primary-blue);
}

.dropdown-item:hover i {
    color: var(--orange-primary);
}

/* Mobile Account Center */
.mobile-account-center {
    display: none;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1060;
}

/* Account Button */
.account-btn {
    display: inline-block;
    color: var(--color-white);
    background: var(--orange-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.account-btn:hover {
    background: var(--orange-bright);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Large Tablets and Below */
@media (max-width: 1024px) {
    .desktop-nav .nav-menu {
        gap: 20px;
    }
    
    .nav-item {
        font-size: 14px;
    }
}

/* Tablets and Mobile */
@media (max-width: 968px) {
    /* Top Info Bar Adjustments */
    .top-left-links {
        gap: 15px;
    }
    
    .info-link span {
        display: none;
    }
    
    .language-selector > span {
        display: none;
    }
    
    /* Show Mobile Currency, Hide Desktop */
    .desktop-currency {
        display: none;
    }
    
    .mobile-currency {
        display: block;
    }
    
    /* Header Layout: Logo | My Account | Hamburger */
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }
    
    .brand-logo {
        grid-column: 1;
        justify-self: start;
    }
    
    .mobile-account-center {
        display: flex;
        grid-column: 2;
        justify-self: center;
        align-items: center;
    }
    
    .header-right {
        grid-column: 3;
        justify-self: end;
    }
    
    /* Hide Desktop Elements */
    .desktop-nav {
        display: none;
    }
    
    .desktop-account {
        display: none;
    }
    
    /* Show Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Navigation Drawer */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: var(--navy-blue);
        padding: 80px 0 30px;
        transition: right 0.4s ease;
        overflow-y: auto;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
        z-index: 1045;
        margin-top: 12px;
    }
    
    .mobile-nav.active {
        right: 0;
    }
    
    .mobile-nav .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    
    .mobile-nav .nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav .nav-item {
        padding: 16px 25px;
        font-size: 15px;
        width: 100%;
        justify-content: space-between;
    }
    
    /* Mobile Dropdown */
    .mobile-nav .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        margin-top: 0;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.4s ease;
    }
    
    .mobile-nav .nav-item-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 8px 0;
    }
    
    .mobile-nav .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
        padding: 12px 25px 12px 45px;
        font-size: 14px;
    }
    
    .mobile-nav .dropdown-item i {
        color: var(--orange-primary);
    }
    
    .mobile-nav .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--color-white);
    }
    
    /* Dark Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1040;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* Small Tablets */
@media (max-width: 768px) {
    .top-info-bar {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .top-left-links {
        gap: 10px;
    }
    
    .info-link i {
        font-size: 13px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .mobile-account-center .account-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .mobile-nav {
        width: 260px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .top-info-bar {
        font-size: 11px;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .mobile-account-center .account-btn {
        padding: 7px 15px;
        font-size: 13px;
    }
    
    .mobile-menu-toggle {
        width: 26px;
        height: 20px;
    }
    
    .hamburger-line {
        height: 2.5px;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8.75px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8.75px) rotate(-45deg);
    }
    
    .mobile-nav {
        width: 75%;
        max-width: 280px;
    }
    
    .currency-dropdown-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .logo-image {
        height: 25px;
    }
    
    .mobile-account-center .account-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}
/* ===========================
   HERO SECTION
   =========================== */
.hero-section {
    background: linear-gradient(135deg, #01257D 0%, #011d5f 100%);
    padding: 0 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 120, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 144, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

/* Hero Left Side */
.hero-left {
    color: var(--color-white);
}

.hero-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 560px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-primary);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
}

/* Hero Right Side */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===========================
   RESPONSIVE DESIGN - HERO
   =========================== */

@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 12px 26px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0 50px;
    }
    
    .hero-tag {
        font-size: 11px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 11px 22px;
    }
    
    .hero-image {
        max-width: 280px;
    }
}
/* ===========================
   ADVANCED FEATURES SECTION
   =========================== */
.advanced-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #01257D 0%, #011d5f 100%);
    position: relative;
    overflow: hidden;
}

.advanced-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 120, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 144, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Features Box */
.features-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.features-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Feature Row */
.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-row:hover {
    transform: translateX(3px);
}

.feature-icon {
    font-size: 18px;
    color: var(--orange-primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-row:hover .feature-icon {
    color: var(--orange-bright);
    transform: scale(1.15);
}

.feature-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 400;
}

.feature-label strong {
    font-weight: 700;
    color: var(--color-white);
}

/* ===========================
   RESPONSIVE DESIGN - ADVANCED FEATURES
   =========================== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .features-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 40px;
    }
    
    .section-title {
        font-size: 38px;
        margin-bottom: 45px;
    }
    
    .features-box {
        padding: 45px 40px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .advanced-features-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .features-box {
        padding: 40px 30px;
    }
    
    .features-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 35px;
    }
    
    .feature-column {
        gap: 18px;
    }
    
    .feature-row {
        padding-bottom: 18px;
        gap: 10px;
    }
    
    .feature-icon {
        font-size: 16px;
        width: 18px;
    }
    
    .feature-label {
        font-size: 14px;
    }
}

/* Small Tablets (640px and below) */
@media (max-width: 640px) {
    .advanced-features-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .features-box {
        padding: 35px 25px;
    }
    
    .features-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-column {
        gap: 16px;
    }
    
    .feature-row {
        padding-bottom: 16px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .advanced-features-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .features-box {
        padding: 30px 20px;
        border-radius: var(--radius-sm);
    }
    
    .features-columns {
        gap: 20px;
    }
    
    .feature-column {
        gap: 14px;
    }
    
    .feature-row {
        padding-bottom: 14px;
        gap: 10px;
    }
    
    .feature-icon {
        font-size: 15px;
        width: 16px;
    }
    
    .feature-label {
        font-size: 13px;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .section-title {
        font-size: 22px;
    }
    
    .features-box {
        padding: 25px 15px;
    }
    
    .feature-label {
        font-size: 12px;
    }
}

/* ===================================
   Hosting Plans Comparison Section
   =================================== */

.hosting-plans-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.plans-container {
    max-width: 1400px;
    margin: 0 auto;
}

.plans-header {
    text-align: center;
    margin-bottom: 50px;
}

.plans-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.plans-wrapper {
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 0;
}

/* Features Column (Left Side) */
.features-column {
    min-width: 280px;
    background: #f8f9fa;
    border-right: 2px solid #e0e0e0;
    position: sticky;
    left: 0;
    z-index: 10;
}

.feature-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-bottom: 2px solid #e0e0e0;
}

.feature-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.feature-item{
    padding: 0px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-height: 60px;
    display: flex;
    align-items: center;
}
.feature-item-hosting{
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.feature-item-cta {
    min-height: 180px;
    background: #fff;
}

/* Plan Columns */
.plan-column {
    min-width: 250px;
    flex: 1;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.plan-column:last-child {
    border-right: none;
}

.plan-column:hover {
    background: #fafbfc;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
    transform: translateY(-5px);
}

.plan-header {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 2px solid #e0e0e0;
}

.plan-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
}

.plan-features {
    display: flex;
    flex-direction: column;
}

.plan-feature {
    padding: 18px 15px;
    font-size: 14px;
    color: #555;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-feature i.fa-check {
    color: #28a745;
    font-size: 18px;
}

.plan-feature i.fa-times {
    color: #dc3545;
    font-size: 18px;
}

/* Pricing Section */
.plan-pricing-cell {
    min-height: 180px;
    padding: 25px 15px;
    background: #fff;
    border-bottom: none;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-old {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.strikethrough {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.hosting-plans-section .save-badge {
    display: inline-block;
    background: #ff6b6b;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Order Button */
.btn-order {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-order:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Footer */
.plans-footer {
    text-align: center;
    margin-top: 30px;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Responsive Design - Hosting Plans */
@media (max-width: 1200px) {
    .plans-wrapper {
        overflow-x: scroll;
    }
    
    .plan-column {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .plans-title {
        font-size: 28px;
    }
    
    .features-column {
        min-width: 200px;
    }
    
    .feature-item {
        font-size: 13px;
        padding: 15px 10px;
    }
    
    .plan-column {
        min-width: 200px;
    }
    
    .plan-title {
        font-size: 18px;
    }
    
    .plan-feature {
        font-size: 13px;
        padding: 15px 10px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .btn-order {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hosting-plans-section {
        padding: 40px 10px;
    }
    
    .plans-title {
        font-size: 24px;
    }
    
    .features-column {
        min-width: 160px;
    }
    
    .plan-column {
        min-width: 180px;
    }
    
    .plan-header {
        height: 80px;
    }
    
    .feature-header {
        height: 80px;
    }
}

/* Scrollbar Styling */
.plans-wrapper::-webkit-scrollbar {
    height: 8px;
}

.plans-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.plans-wrapper::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.plans-wrapper::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
}


/* ===================================
   Horizontal Testimonial Section
   =================================== */

.testimonial-horizontal-section {
    padding: 80px 20px;
    background: #fafafa;
}

.testimonial-horizontal-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.testimonial-horizontal-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-horizontal-item.active {
    display: block;
    opacity: 1;
}

.testimonial-horizontal-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Image Side */
.testimonial-image-side {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.testimonial-person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-video-wrapper:hover .testimonial-person-image {
    transform: scale(1.05);
}

/* Video Play Button */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-video-wrapper:hover .video-play-button {
    background: rgba(103, 61, 230, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-svg {
    width: 32px;
    height: 32px;
    fill: #673de6;
    margin-left: 4px;
    transition: fill 0.3s ease;
}

.testimonial-video-wrapper:hover .play-svg {
    fill: #fff;
}

/* Text Side */
.testimonial-text-side {
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
}

/* Quote Mark */
.quote-mark {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
}

.quote-mark svg {
    width: 100%;
    height: 100%;
    fill: #673de6;
}

/* Testimonial Quote */
.testimonial-quote {
    font-size: 32px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.highlight-text {
    color: #673de6;
    font-weight: 600;
}

/* Read More Link */
.testimonial-read-more {
    font-size: 16px;
    color: #673de6;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.testimonial-read-more:hover {
    color: #5028c6;
}

/* Author Section */
.testimonial-author-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.author-details {
    flex: 1;
}

.author-name-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.author-site {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 2px solid #e5e7eb;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-btn:hover {
    background: #673de6;
    border-color: #673de6;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: #673de6;
    transition: stroke 0.3s ease;
}

.carousel-btn:hover svg {
    stroke: #fff;
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Responsive Design - Testimonials */
@media (max-width: 1200px) {
    .testimonial-horizontal-content {
        grid-template-columns: 450px 1fr;
        gap: 40px;
    }
    
    .testimonial-text-side {
        padding: 50px 40px 50px 0;
    }
    
    .testimonial-quote {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .testimonial-horizontal-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .testimonial-image-side {
        min-height: 400px;
    }
    
    .testimonial-text-side {
        padding: 50px 40px;
    }
    
    .testimonial-quote {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .testimonial-horizontal-section {
        padding: 60px 15px;
    }
    
    .testimonial-image-side {
        min-height: 350px;
    }
    
    .testimonial-text-side {
        padding: 40px 30px;
    }
    
    .quote-mark {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }
    
    .testimonial-quote {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .testimonial-read-more {
        margin-bottom: 30px;
    }
    
    .video-play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .testimonial-text-side {
        padding: 30px 20px;
    }
    
    .testimonial-quote {
        font-size: 18px;
    }
    
    .testimonial-author-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .carousel-navigation {
        align-self: flex-end;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .author-name-text {
        font-size: 16px;
    }
    
    .author-site {
        font-size: 14px;
    }
}




/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    padding: 100px 0;
    background: var(--color-off-white);
    position: relative;
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-description {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    box-shadow: 0 4px 20px rgba(1, 112, 185, 0.12);
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to right, rgba(1, 112, 185, 0.02), transparent);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.question-icon {
    font-size: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .question-icon {
    color: var(--orange-primary);
    transform: scale(1.1);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: var(--primary-blue);
}

.faq-arrow {
    font-size: 14px;
    color: var(--color-gray);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-arrow {
    color: var(--primary-blue);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 24px 68px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0;
}

.faq-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-link:hover {
    color: var(--orange-primary);
    border-bottom: 1px solid var(--orange-primary);
}

/* FAQ CTA */
.faq-cta {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-blue) 100%);
    border-radius: var(--radius-xl);
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(1, 37, 125, 0.15);
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.faq-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.faq-cta-icon {
    font-size: 48px;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.faq-cta-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 6px;
    line-height: 1.3;
}

.faq-cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.faq-cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--orange-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.faq-cta-button:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN - FAQ
   =========================== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 42px;
    }
    
    .faq-description {
        font-size: 17px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px 22px;
    }
    
    .faq-question-content {
        gap: 14px;
    }
    
    .question-icon {
        font-size: 22px;
    }
    
    .faq-question-text {
        font-size: 17px;
    }
    
    .faq-answer p {
        padding: 0 22px 20px 58px;
        font-size: 15px;
    }
    
    .faq-cta {
        flex-direction: column;
        padding: 35px 30px;
        text-align: center;
    }
    
    .faq-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Tablets (640px and below) */
@media (max-width: 640px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-description {
        font-size: 15px;
    }
    
    .faq-accordion {
        margin-bottom: 50px;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question-content {
        gap: 12px;
    }
    
    .question-icon {
        font-size: 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-arrow {
        font-size: 12px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 52px;
        font-size: 14px;
    }
    
    .faq-cta-text h3 {
        font-size: 22px;
    }
    
    .faq-cta-text p {
        font-size: 14px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-tag {
        font-size: 11px;
        padding: 7px 18px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-description {
        font-size: 14px;
    }
    
    .faq-question {
        padding: 16px 18px;
    }
    
    .question-icon {
        font-size: 18px;
    }
    
    .faq-question-text {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 18px 16px 48px;
        font-size: 13px;
    }
    
    .faq-cta {
        padding: 30px 25px;
    }
    
    .faq-cta-icon {
        font-size: 40px;
    }
    
    .faq-cta-text h3 {
        font-size: 20px;
    }
    
    .faq-cta-button {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question-text {
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 16px 14px 44px;
    }
}


/* ===========================
   PRICING SECTION (from styles.css)
   =========================== */
.pricing-section {
    background: var(--color-white);
    padding: 80px 0;
}

/* ===========================
   PRICING HEADER
   =========================== */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 30px;
}

/* ===========================
   BILLING TOGGLE
   =========================== */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--color-dark);
    font-weight: 600;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary-blue);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Save Badge */
.pricing-section .save-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-white);
    background: var(--orange-primary);
    padding: 6px 12px;
    border-radius: 20px;
}

/* ===========================
   PRICING CARDS GRID
   =========================== */
.cloud-pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===========================
   PRICING CARD
   =========================== */
.cloud-card {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cloud-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

/* Popular Card */
.cloud-card.popular {
    border: 2px solid var(--orange-primary);
    box-shadow: 0 4px 20px rgba(255, 120, 0, 0.12);
}

.cloud-card.popular:hover {
    box-shadow: 0 10px 30px rgba(255, 120, 0, 0.2);
    border-color: var(--orange-primary);
}

/* Popular Badge */
.cloud-popular-badge {
    position: absolute;
    top: -1px;
    left: -2px;
    right: -2px;
    background: var(--orange-primary);
    color: var(--color-white);
    text-align: center;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px 6px 0 0;
    letter-spacing: 0.5px;
}

.cloud-card.popular .cloud-icon {
    margin-top: 12px;
}

/* ===========================
   CARD ICON
   =========================== */
.cloud-icon {
    text-align: center;
    margin-bottom: 16px;
}

.cloud-icon img {
    width: 80px;
    height: 60px;
    object-fit: contain;
}

/* ===========================
   PLAN NAME & DESCRIPTION
   =========================== */
.cloud-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.3;
}

.cloud-plan-desc {
    font-size: 13px;
    color: var(--color-gray);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 36px;
}

/* ===========================
   PRICING
   =========================== */
.cloud-pricing {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.cloud-price-original {
    font-size: 14px;
    color: var(--color-gray);
    text-decoration: line-through;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cloud-save-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange-primary);
    text-decoration: none;
}

.cloud-price-current {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.cloud-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 4px;
}

.cloud-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.cloud-period {
    font-size: 16px;
    color: var(--color-gray);
    margin-top: 18px;
    margin-left: 2px;
}

/* ===========================
   FEATURES LIST
   =========================== */
.cloud-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.cloud-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text);
}

.cloud-icon-check {
    flex-shrink: 0;
    margin-top: 1px;
}

.cloud-features li span {
    flex: 1;
}

.cloud-features li strong {
    color: var(--color-dark);
    font-weight: 600;
}

/* Feature Badge */
.feature-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
}

.feature-badge.new {
    background: #E3F2FD;
    color: var(--primary-blue);
}

/* ===========================
   ORDER BUTTON
   =========================== */
.cloud-order-btn {
    text-align: center;
    width: 100%;
    background: var(--orange-primary);
    color: var(--color-white);
    border: none;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.cloud-order-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 112, 185, 0.3);
}

/* ===========================
   RESPONSIVE - PRICING CARDS TABLET
   =========================== */
@media (max-width: 1200px) {
    .cloud-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-header {
        margin-bottom: 50px;
    }
    
    .pricing-main-title {
        font-size: 36px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .cloud-pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cloud-card {
        padding: 24px 18px;
    }
    
    .cloud-plan-name {
        font-size: 19px;
    }
    
    .cloud-plan-desc {
        font-size: 12px;
        min-height: auto;
    }
    
    .cloud-amount {
        font-size: 38px;
    }
}

/* ===========================
   RESPONSIVE - PRICING CARDS MOBILE
   =========================== */
@media (max-width: 768px) {
    .pricing-section {
        padding: 50px 0;
    }
    
    .pricing-header {
        margin-bottom: 40px;
    }
    
    .pricing-main-title {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .pricing-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .pricing-section .save-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .cloud-pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cloud-card {
        padding: 28px 24px;
    }
    
    .cloud-icon img {
        width: 70px;
        height: 50px;
    }
    
    .cloud-plan-name {
        font-size: 20px;
    }
    
    .cloud-plan-desc {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .cloud-pricing {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    
    .cloud-price-original {
        font-size: 13px;
    }
    
    .cloud-save-badge {
        font-size: 10px;
    }
    
    .cloud-currency {
        font-size: 18px;
    }
    
    .cloud-amount {
        font-size: 40px;
    }
    
    .cloud-period {
        font-size: 15px;
        margin-top: 16px;
    }
    
    .cloud-features {
        gap: 9px;
        margin-bottom: 20px;
    }
    
    .cloud-features li {
        font-size: 13px;
    }
    
    .cloud-order-btn {
        font-size: 15px;
        padding: 13px 20px;
    }
}

/* ===========================
   RESPONSIVE - PRICING CARDS SMALL MOBILE
   =========================== */
@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-header {
        margin-bottom: 35px;
    }
    
    .pricing-main-title {
        font-size: 24px;
    }
    
    .pricing-subtitle {
        font-size: 14px;
    }
    
    .billing-toggle {
        gap: 8px;
    }
    
    .toggle-label {
        font-size: 13px;
    }
    
    .toggle-switch {
        width: 44px;
        height: 24px;
    }
    
    .toggle-slider:before {
        height: 18px;
        width: 18px;
    }
    
    .toggle-switch input:checked + .toggle-slider:before {
        transform: translateX(20px);
    }
    
    .pricing-section .save-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .cloud-card {
        padding: 24px 20px;
    }
    
    .cloud-popular-badge {
        font-size: 11px;
        padding: 7px 10px;
    }
    
    .cloud-icon {
        margin-bottom: 14px;
    }
    
    .cloud-icon img {
        width: 65px;
        height: 45px;
    }
    
    .cloud-plan-name {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .cloud-plan-desc {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .cloud-pricing {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .cloud-price-original {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .cloud-save-badge {
        font-size: 10px;
    }
    
    .cloud-currency {
        font-size: 16px;
        margin-top: 3px;
    }
    
    .cloud-amount {
        font-size: 36px;
    }
    
    .cloud-period {
        font-size: 14px;
        margin-top: 14px;
    }
    
    .cloud-features {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .cloud-features li {
        font-size: 12px;
        gap: 8px;
    }
    
    .cloud-icon-check {
        width: 14px;
        height: 14px;
    }
    
    .feature-badge.new {
        font-size: 8px;
        padding: 2px 4px;
    }
    
    .cloud-order-btn {
        font-size: 14px;
        padding: 12px 18px;
    }
}



/* ===========================
   DYNAMIC DOMAIN SEARCH SECTION
   =========================== */

.domain-search-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #011d5f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.domain-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 120, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 144, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.domain-search-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 50px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===========================
   SEARCH BOX FORM
   =========================== */
.search-box-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 800px;
    margin: 0 auto 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
}

.search-input-container {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: var(--color-white);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

/* Logic for JS focus state */
.search-input-container.focused {
    border-color: var(--orange-primary);
}

.search-icon {
    color: var(--orange-primary);
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.domain-input {
    flex: 1;
    padding: 20px 0;
    font-size: 16px;
    font-family: var(--font-primary);
    color: var(--color-dark);
    border: none;
    outline: none;
    background: transparent;
}

.domain-input::placeholder {
    color: var(--color-gray);
    opacity: 0.8;
}

/* Input Error Animation */
.domain-input.input-error {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.search-button {
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--color-white);
    background: var(--orange-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button:hover {
    background: var(--orange-bright);
    transform: translateX(2px);
}

.search-button:active {
    transform: translateX(0);
}

/* ===========================
   DOMAIN EXTENSIONS
   =========================== */
.domain-extensions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.extension-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: var(--radius-md);
}

.extension-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.extension-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.extension-price {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 968px) {
    .section-heading {
        font-size: 36px;
    }
    
    .search-box-wrapper {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 30px;
        padding: 0 10px;
    }
    
    .search-box-wrapper {
        flex-direction: column;
        max-width: 500px;
    }

    /* HIDES THE DOMAIN EXTENSIONS SECTION ON MOBILE/TABLET */
    .domain-extensions {
        display: none;
    }
    
    .search-input-container {
        padding: 16px 24px;
        border-bottom: 1px solid var(--color-border);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .search-button {
        padding: 18px 24px;
        width: 100%;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 24px;
    }
}

/* ===========================
   LOADING STATE
   =========================== */
.search-button.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.search-button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: var(--radius-full);
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===========================
   SERVICES SECTION
   Using existing stylesheet variables
   =========================== */

.services-section {
    background: var(--color-white);
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: 400;
    line-height: 1.6;
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Service Item */
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

/* Service Image */
.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 12px;
}

.service-description em {
    font-style: normal;
    color: var(--navy-blue);
    font-weight: 600;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-link:hover {
    color: var(--dark-blue);
    gap: 12px;
}

.arrow-icon {
    font-size: 18px;
    font-style: normal;
    transition: transform 0.3s ease;
}

.service-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===========================
   RESPONSIVE DESIGN - SERVICES
   =========================== */

@media (max-width: 968px) {
    .services-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-main-title {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }
    
    .services-list {
        gap: 60px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .service-image img {
        max-width: 380px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-main-title {
        font-size: 34px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-list {
        gap: 50px;
    }
    
    .service-item {
        gap: 35px;
    }
    
    .service-image img {
        max-width: 320px;
    }
    
    .service-title {
        font-size: 26px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .service-link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-main-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .services-list {
        gap: 40px;
    }
    
    .service-item {
        gap: 30px;
    }
    
    .service-image img {
        max-width: 280px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .service-link {
        font-size: 14px;
    }
    
    .arrow-icon {
        font-size: 16px;
    }
}
/* ===========================
   SUPPORT SECTION
   Using existing stylesheet variables
   =========================== */

.support-section {
    background: var(--color-light-gray);
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.support-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-section .section-main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.support-section .section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    font-weight: 400;
    line-height: 1.6;
}

/* Support Cards Grid */
.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card */
.support-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Image Wrapper */
.card-image-wrapper {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.support-card:hover .card-image {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}

.support-card:hover .image-overlay {
    opacity: 0.25;
}

/* Overlay Colors */
.blue-overlay {
    background: linear-gradient(135deg, #5b7ce6 0%, #4a6dd5 100%);
}

.green-overlay {
    background: linear-gradient(135deg, #5dcea6 0%, #4bbf95 100%);
}

.orange-overlay {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-primary) 100%);
}

/* Card Content */
.card-content {
    padding: 30px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 24px;
    flex: 1;
}

/* Card Button */
.card-button {
    display: block;
    text-align: center;
    background: var(--orange-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.card-button:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
}

/* ===========================
   RESPONSIVE DESIGN - SUPPORT
   =========================== */

@media (max-width: 968px) {
    .support-section {
        padding: 80px 0;
    }
    
    .support-section .section-header {
        margin-bottom: 50px;
    }
    
    .support-section .section-main-title {
        font-size: 40px;
    }
    
    .support-section .section-subtitle {
        font-size: 17px;
    }
    
    .support-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .support-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
    
    .card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .support-section {
        padding: 60px 0;
    }
    
    .support-section .section-header {
        margin-bottom: 40px;
    }
    
    .support-section .section-main-title {
        font-size: 34px;
    }
    
    .support-section .section-subtitle {
        font-size: 16px;
    }
    
    .support-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .support-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .card-content {
        padding: 26px 24px 28px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-description {
        font-size: 15px;
        margin-bottom: 22px;
    }
    
    .card-button {
        font-size: 15px;
        padding: 13px 22px;
    }
}

@media (max-width: 480px) {
    .support-section {
        padding: 50px 0;
    }
    
    .support-section .section-header {
        margin-bottom: 35px;
    }
    
    .support-section .section-main-title {
        font-size: 28px;
    }
    
    .support-section .section-subtitle {
        font-size: 15px;
    }
    
    .support-cards {
        gap: 20px;
    }
    
    .card-image-wrapper {
        height: 160px;
    }
    
    .card-content {
        padding: 24px 20px 26px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .card-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .card-button {
        font-size: 14px;
        padding: 12px 20px;
    }
}
/* ===========================
   WORDPRESS HOSTING SECTION
   Using existing stylesheet variables
   =========================== */

.wordpress-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #01206b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.wordpress-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(1, 104, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 120, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.wordpress-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===========================
   LEFT SIDE - GRAPHIC
   =========================== */

.wordpress-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Browser Window */
.browser-window {
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 2;
}

.browser-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dot:nth-child(1) {
    background: #ff5f57;
}

.browser-dot:nth-child(2) {
    background: #ffbd2e;
}

.browser-dot:nth-child(3) {
    background: #28ca42;
}

.browser-content {
    background: var(--color-white);
}

/* WP Hero Section */
.wp-hero {
    background: linear-gradient(135deg, #4a7cc7 0%, #2e5fb8 100%);
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.05)" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.wp-blog-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* WP Posts Section */
.wp-posts-section {
    padding: 30px 20px;
}

.wp-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 20px;
}

.wp-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.wp-post-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.wp-post-card.add-new {
    border: 2px dashed rgba(255, 120, 0, 0.3);
    background: rgba(255, 120, 0, 0.02);
}

.wp-post-image {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #a5c9f0 0%, #7ba8db 100%);
    position: relative;
}

.wp-post-image.faded {
    opacity: 0.3;
}

.wp-post-lines {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.line {
    height: 4px;
    background: #d0d0d0;
    border-radius: 2px;
}

.line.short {
    width: 60%;
}

.line.faded {
    opacity: 0.3;
}

.add-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--orange-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.4);
}

/* ===========================
   FLOATING ELEMENTS
   =========================== */

.floating-element {
    position: absolute;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float-gentle 6s ease-in-out infinite;
}

.top-element {
    top: 0;
    left: 0;
    z-index: 1;
    animation-delay: 0s;
}

.left-element {
    top: 30%;
    left: -40px;
    z-index: 3;
    animation-delay: 1s;
}

.bottom-element {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation-delay: 2s;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

.left-element {
    animation-name: float-left;
}

@keyframes float-left {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-8px) translateX(-8px);
    }
}

/* Theme Preview */
.theme-preview {
    padding: 16px;
    display: flex;
    gap: 12px;
}

.theme-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.theme-box {
    width: 50px;
    height: 35px;
    border-radius: 3px;
}

.theme-box.orange {
    background: linear-gradient(135deg, #ffb380 0%, var(--orange-primary) 100%);
}

.theme-box.gray {
    background: #e0e0e0;
}

.theme-box.small {
    height: 16px;
}

.theme-box-row {
    display: flex;
    gap: 8px;
}

.theme-box-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.theme-line {
    height: 8px;
    border-radius: 2px;
}

.theme-line.gray {
    background: #d0d0d0;
    width: 40px;
}

/* Dashboard Menu */
.dashboard-menu {
    padding: 20px;
    width: 200px;
}

.menu-icon {
    margin-bottom: 16px;
}

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

.menu-list li {
    padding: 8px 12px;
    font-size: 13px;
    color: var(--color-text);
    border-radius: 3px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.menu-list li:hover {
    background: var(--color-light-gray);
    color: var(--primary-blue);
}

/* Editor Toolbar */
.editor-toolbar {
    padding: 10px 20px;
    width: 250px;
}

/* ===========================
   RIGHT SIDE - CONTENT
   =========================== */

.wordpress-text {
    color: var(--color-white);
}

.wordpress-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.wordpress-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.inline-link {
    color: var(--orange-light);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: var(--orange-bright);
}

/* Features List */
.wordpress-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.wordpress-section .feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.wordpress-section .feature-icon {
    flex-shrink: 0;
}

.wordpress-section .feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

/* CTA Button */
.wordpress-cta {
    margin-top: 40px;
}

.wordpress-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-primary);
    color: var(--color-white);
    font-size: 17px;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.wordpress-section .cta-button:hover {
    background: var(--orange-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN - WORDPRESS
   =========================== */

@media (max-width: 1024px) {
    .wordpress-content {
        gap: 60px;
    }
    
    .wordpress-title {
        font-size: 36px;
    }
    
    .floating-element.left-element {
        left: -20px;
    }
}

@media (max-width: 968px) {
    .wordpress-section {
        padding: 80px 0;
    }
    
    .wordpress-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .wordpress-graphic {
        order: 1;
        min-height: 400px;
    }
    
    .wordpress-text {
        order: 2;
    }
    
    .browser-window {
        max-width: 400px;
    }
    
    .wordpress-title {
        font-size: 34px;
    }
    
    .wordpress-description {
        font-size: 15px;
    }
    
    .floating-element.left-element {
        left: 10px;
        transform: scale(0.9);
    }
    
    .floating-element.bottom-element {
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .wordpress-section {
        padding: 60px 0;
    }
    
    .wordpress-graphic {
        min-height: 350px;
    }
    
    .browser-window {
        max-width: 350px;
    }
    
    .wp-hero {
        padding: 40px 20px;
    }
    
    .wp-blog-title {
        font-size: 20px;
    }
    
    .wp-posts-section {
        padding: 20px 15px;
    }
    
    .wp-posts-grid {
        gap: 10px;
    }
    
    .wp-post-image {
        height: 60px;
    }
    
    .wordpress-title {
        font-size: 30px;
    }
    
    .wordpress-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .feature-item {
        font-size: 13px;
        padding: 4px 15px;
    }

    .wordpress-section .feature-title {
        font-size: 16px;
    }

    .wordpress-section .cta-button {
        font-size: 16px;
        padding: 14px 36px;
    }

    .floating-element.top-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .wordpress-section {
        padding: 50px 0;
    }
    
    .wordpress-content {
        gap: 40px;
    }
    
    .wordpress-graphic {
        min-height: 300px;
    }
    
    .browser-window {
        max-width: 100%;
    }
    
    .wp-hero {
        padding: 30px 15px;
    }
    
    .wp-blog-title {
        font-size: 18px;
    }
    
    .wp-posts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .wp-post-image {
        height: 100px;
    }
    
    .wordpress-title {
        font-size: 26px;
    }
    
    .wordpress-description {
        font-size: 14px;
    }
    
    .wordpress-section .features-list {
        gap: 0px;
    }

    .wordpress-section .feature-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .wordpress-section .feature-title {
        font-size: 15px;
    }
    
    .wordpress-section .cta-button {
        font-size: 15px;
        padding: 13px 32px;
        width: 100%;
        justify-content: center;
    }
    
    .floating-element.left-element,
    .floating-element.bottom-element {
        display: none;
    }
}


/* ===========================
   FOOTER INFO BAR
   =========================== */
.footer-info-bar {
    background: linear-gradient(135deg, #0d3a8f 0%, #01257D 100%);
    padding: 30px 0;
    position: relative;
}

.footer-info-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-white);
}

.info-icon {
    font-size: 32px;
    color: var(--color-white);
    opacity: 0.9;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-white);
}

.info-text p {
    font-size: 14px;
    color: var(--color-white);
    opacity: 0.9;
}

/* ===========================
   MAIN FOOTER
   =========================== */
.main-footer {
    background: var(--navy-blue);
    padding: 60px 0 40px;
    color: var(--color-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* ===========================
   FOOTER COLUMN
   =========================== */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* ===========================
   FOOTER LOGO & ABOUT
   =========================== */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-host {
    color: var(--color-white);
}

.logo-orio {
    color: var(--orange-primary);
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* ===========================
   SOCIAL LINKS
   =========================== */
.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    color: var(--navy-blue);
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--orange-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 120, 0, 0.4);
}

/* ===========================
   FOOTER TITLE
   =========================== */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--orange-primary);
}

/* ===========================
   FOOTER LINKS
   =========================== */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.footer-links li a i {
    font-size: 14px;
    color: var(--orange-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-links li a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
    color: var(--orange-bright);
}

/* ===========================
   FOOTER CONTACT
   =========================== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--orange-primary);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li span {
    flex: 1;
}

/* ===========================
   PAYMENT METHODS
   =========================== */
.payment-methods {
    margin-top: 24px;
}

.payment-methods img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   FOOTER BOTTOM
   =========================== */
.footer-bottom {
    background-color: var(--dark-blue);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--orange-primary);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ===========================
   RESPONSIVE - FOOTER TABLET
   =========================== */
@media (max-width: 968px) {
    .main-footer {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

/* ===========================
   RESPONSIVE - FOOTER MOBILE
   =========================== */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-about {
        grid-column: auto;
    }
    
    .footer-logo h3 {
        font-size: 26px;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .footer-links {
        gap: 9px;
    }
    
    .footer-links li a {
        font-size: 14px;
    }
    
    .footer-links li a i {
        font-size: 13px;
    }
    
    .footer-contact {
        gap: 12px;
    }
    
    .footer-contact li {
        font-size: 13px;
    }
    
    .footer-contact li i {
        font-size: 13px;
    }
    
    .payment-methods {
        margin-top: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .copyright {
        font-size: 13px;
    }
    
    .footer-bottom-links {
        font-size: 13px;
        gap: 10px;
    }
}

/* ===========================
   RESPONSIVE - FOOTER SMALL MOBILE
   =========================== */
@media (max-width: 480px) {
    .main-footer {
        padding: 35px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo h3 {
        font-size: 24px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-links li a {
        font-size: 13px;
        gap: 7px;
    }
    
    .footer-links li a i {
        font-size: 12px;
    }
    
    .footer-contact {
        gap: 10px;
    }
    
    .footer-contact li {
        font-size: 12px;
        gap: 10px;
    }
    
    .footer-contact li i {
        font-size: 12px;
    }
    
    .payment-methods {
        margin-top: 18px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .footer-bottom-links {
        font-size: 12px;
    }
}


/* ===========================
   PACKAGE CHOOSER
   =========================== */
.package-chooser-wrapper {
    background: linear-gradient(135deg, #1a1d4a 0%, #01257D 50%, #2a1b5f 100%);
    padding: 80px 0 120px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* Background Overlay */
.package-chooser-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 120, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 120, 0, 0.15) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.package-chooser-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(255, 120, 0, 0.03) 12%, transparent 12.5%),
        linear-gradient(150deg, rgba(255, 120, 0, 0.03) 12%, transparent 12.5%);
    background-size: 80px 140px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

/* ===========================
   MOTION BACKGROUND
   =========================== */
.motion-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.motion-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    font-size: 40px;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.item-1 { top: 10%; left: 8%; font-size: 50px; color: rgba(255, 120, 0, 0.12); animation: move1 15s infinite; }
.item-2 { top: 15%; right: 12%; font-size: 45px; animation: move2 12s infinite; }
.item-3 { top: 25%; left: 15%; font-size: 35px; color: rgba(255, 120, 0, 0.1); animation: move3 18s infinite; }
.item-4 { top: 30%; right: 20%; font-size: 42px; animation: move4 14s infinite; }
.item-5 { top: 40%; left: 5%; font-size: 48px; color: rgba(255, 120, 0, 0.11); animation: move5 16s infinite; }
.item-6 { top: 45%; right: 8%; font-size: 38px; animation: move6 10s infinite; }
.item-7 { top: 55%; left: 25%; font-size: 44px; color: rgba(255, 120, 0, 0.1); animation: move7 20s infinite; }
.item-8 { top: 60%; right: 25%; font-size: 36px; animation: move1 17s infinite; }
.item-9 { top: 70%; left: 10%; font-size: 40px; color: rgba(255, 120, 0, 0.12); animation: move2 13s infinite; }
.item-10 { top: 75%; right: 15%; font-size: 46px; animation: move3 19s infinite; }
.item-11 { top: 20%; left: 35%; font-size: 34px; color: rgba(255, 120, 0, 0.09); animation: move6 11s infinite; }
.item-12 { top: 35%; right: 35%; font-size: 41px; animation: move4 15s infinite; }
.item-13 { top: 50%; left: 40%; font-size: 52px; color: rgba(255, 120, 0, 0.11); animation: move5 14s infinite; }
.item-14 { top: 65%; right: 40%; font-size: 37px; animation: move7 16s infinite; }
.item-15 { top: 12%; left: 60%; font-size: 43px; color: rgba(255, 120, 0, 0.1); animation: move1 18s infinite; }
.item-16 { top: 38%; right: 60%; font-size: 39px; animation: move6 12s infinite; }
.item-17 { top: 58%; left: 65%; font-size: 45px; color: rgba(255, 120, 0, 0.12); animation: move2 17s infinite; }
.item-18 { top: 78%; right: 65%; font-size: 40px; animation: move3 15s infinite; }

@keyframes move1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes move2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(35px) rotate(-10deg); }
}

@keyframes move3 {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(-25px) rotate(8deg); }
}

@keyframes move4 {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(25px) rotate(-8deg); }
}

@keyframes move5 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(12deg); }
}

@keyframes move6 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.08; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.15; }
}

@keyframes move7 {
    0%, 100% { transform: translate(0px, 0px) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(-12deg); }
}

/* ===========================
   SIDE ICON BOXES
   =========================== */
.side-icon-box {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 70px;
    box-shadow: 0 10px 40px rgba(255, 120, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.side-icon-box i {
    font-size: 70px;
}

.left-side {
    top: 15%;
    left: 5%;
    transform: rotate(-15deg);
    animation: float-left 6s ease-in-out infinite;
}

.right-side {
    bottom: 15%;
    right: 5%;
    transform: rotate(15deg);
    animation: float-right 6s ease-in-out infinite;
}

@keyframes float-left {
    0%, 100% { transform: rotate(-15deg) translateY(0px); }
    50% { transform: rotate(-15deg) translateY(-20px); }
}

@keyframes float-right {
    0%, 100% { transform: rotate(15deg) translateY(0px); }
    50% { transform: rotate(15deg) translateY(20px); }
}

/* ===========================
   CONTENT
   =========================== */
.chooser-inner {
    position: relative;
    z-index: 10;
    text-align: center;
}

.section-headline {
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 1.3;
}

/* ===========================
   DESKTOP PACKAGES
   =========================== */
.packages-desktop {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.packages-mobile {
    display: none;
}

.top-packages,
.bottom-packages {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.package-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-card.highlighted {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
}

.package-card:hover {
    background: var(--orange-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.card-icon {
    font-size: 18px;
}

/* ===========================
   MOBILE CHOOSER
   =========================== */
.mobile-chooser {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.chooser-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 40px;
    background: var(--white);
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.chooser-button:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    font-size: 20px;
}

.btn-label {
    flex: 1;
    text-align: left;
}

.btn-chevron {
    font-size: 14px;
    color: var(--orange);
    transition: transform 0.3s ease;
}

.chooser-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.list-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.list-option:last-child {
    border-bottom: none;
}

.list-option:hover {
    background: var(--light-bg);
    padding-left: 28px;
}

.list-option.selected {
    background: var(--orange);
    color: var(--white);
}

.list-option.selected:hover {
    background: var(--orange-hover);
}

.opt-icon {
    font-size: 18px;
}

.opt-label {
    flex: 1;
    text-align: left;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .package-chooser-wrapper {
        padding: 60px 0 100px;
    }

    .side-icon-box {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .side-icon-box i {
        font-size: 50px;
    }

    .left-side {
        left: -5%;
        top: -5%;
    }

    .right-side {
        right: 2%;
        bottom: 5%;
    }

    .section-headline {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .packages-desktop {
        display: none !important;
    }

    .packages-mobile {
        display: block;
    }

    .motion-item {
        font-size: 28px;
        opacity: 0.6;
    }

    .item-11, .item-12, .item-16, .item-17, .item-18 {
        display: none;
    }
}

@media (max-width: 480px) {
    .package-chooser-wrapper {
        padding: 50px 0 90px;
    }

    .side-icon-box {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .side-icon-box i {
        font-size: 40px;
    }

    .section-headline {
        font-size: 25px;
    }

    .item-3, .item-4, .item-7, .item-8, .item-14, .item-15 {
        display: none;
    }
}

/* ===========================
   VPS SECTION - WORLD CLASS DESIGN
   Using direct color codes (no CSS variables)
   =========================== */

/* ===========================
   VPS SECTION BASE
   =========================== */
.vps-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse 70% 60% at 15% 25%, rgba(1, 37, 125, 0.06) 0%, transparent 65%),
        radial-gradient(ellipse 60% 55% at 85% 75%, rgba(255, 120, 0, 0.05) 0%, transparent 60%),
        #f8f9fb;
}

/* Animated background elements */
.vps-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.4;
}

.vps-bg-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(1, 37, 125, 0.12) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    animation: vpsFloat1 15s ease-in-out infinite;
}

.vps-bg-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.10) 0%, transparent 70%);
    bottom: -80px;
    right: -100px;
    animation: vpsFloat2 18s ease-in-out infinite;
}

@keyframes vpsFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes vpsFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -25px) scale(1.08); }
}

/* Grid pattern overlay */
.vps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(1, 37, 125, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 37, 125, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.vps-content {
    position: relative;
    z-index: 2;
}

/* ===========================
   SECTION HEADER
   =========================== */
.vps-header {
    text-align: center;
    margin-bottom: 60px;
}

.vps-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(1, 37, 125, 0.08);
    border: 1.5px solid rgba(1, 37, 125, 0.15);
    border-radius: 50px;
    color: #01257D;
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.vps-tag i {
    color: #FF7800;
    font-size: 10px;
    animation: vpsPulse 2s ease infinite;
}

@keyframes vpsPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.vps-title {
    font-family: "Roboto", sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: #3a3a3a;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.vps-title span {
    background: linear-gradient(135deg, #01257D 0%, #0C379A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.vps-subtitle {
    font-family: "Rosario", sans-serif;
    font-size: 18px;
    color: #808285;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* ===========================
   FEATURES GRID (4 CARDS)
   =========================== */
.vps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.vps-card {
    background: #FFFFFF;
    border: 1px solid #dddddd;
    border-radius: 12px;
    padding: 36px 26px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glossy shine effect */
.vps-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
    border-radius: 12px;
}

/* Bottom accent line */
.vps-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #01257D 0%, #FF7800 100%);
    border-radius: 0 0 12px 12px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.vps-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 60px rgba(1, 37, 125, 0.15),
        0 10px 24px rgba(1, 37, 125, 0.08);
    border-color: transparent;
}

.vps-card:hover::after {
    transform: scaleX(1);
}

/* Card number watermark */
.vps-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: "Roboto", sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(1, 37, 125, 0.04);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
    transition: color 0.3s;
}

.vps-card:hover .vps-card-number {
    color: rgba(1, 37, 125, 0.07);
}

/* Icon wrapper */
.vps-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f2ff 0%, #dce8ff 100%);
    border: 1px solid rgba(1, 37, 125, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(1, 37, 125, 0.06);
}

.vps-card-icon svg {
    width: 42px;
    height: 42px;
    transition: all 0.4s;
}

.vps-card:hover .vps-card-icon {
    background: linear-gradient(135deg, #01257D 0%, #0C379A 100%);
    border-color: transparent;
    box-shadow: 
        0 12px 30px rgba(1, 37, 125, 0.25),
        0 0 0 5px rgba(1, 37, 125, 0.08);
    transform: scale(1.08);
}

/* Invert SVG colors on hover */
.vps-card:hover .vps-card-icon svg {
    filter: brightness(0) invert(1);
}

.vps-card-title {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s;
}

.vps-card:hover .vps-card-title {
    color: #01257D;
}

.vps-card-desc {
    font-family: "Rosario", sans-serif;
    font-size: 14px;
    color: #4B4F58;
    line-height: 1.7;
    margin-bottom: 18px;
}

.vps-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #01257D;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
}

.vps-card-link i {
    font-size: 11px;
    transition: transform 0.3s;
}

.vps-card:hover .vps-card-link {
    opacity: 1;
    transform: translateY(0);
}

.vps-card-link:hover {
    gap: 10px;
}

.vps-card-link:hover i {
    transform: translateX(3px);
}

/* ===========================
   HERO BANNER
   =========================== */
.vps-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(125deg, #010f3a 0%, #011d5f 50%, #021650 100%);
    box-shadow: 
        0 40px 80px rgba(1, 15, 58, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

/* Rich gradient overlays */
.vps-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 65% at 5% 50%, rgba(255, 120, 0, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 95% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 70% 90%, rgba(12, 55, 154, 0.25) 0%, transparent 55%);
    pointer-events: none;
}

/* Grid pattern */
.vps-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.vps-banner-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
}

/* Orange accent stripe */
.vps-banner-accent {
    width: 6px;
    background: linear-gradient(180deg, #FF7800 0%, #FF9000 100%);
    flex-shrink: 0;
    border-radius: 12px 0 0 12px;
}

.vps-banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 48px 50px;
    flex: 1;
}

/* Icon panel */
.vps-banner-icon-wrap {
    flex-shrink: 0;
    position: relative;
}

.vps-banner-icon-box {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;
}

.vps-banner-icon-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(255, 120, 0, 0.12), transparent 60%);
    border-radius: 12px;
}

.vps-banner-icon-box svg {
    width: 76px;
    height: 76px;
    position: relative;
    z-index: 1;
}

.vps-banner:hover .vps-banner-icon-box {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Floating badge */
.vps-banner-badge {
    position: absolute;
    bottom: -8px;
    right: -12px;
    background: #FF7800;
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.5);
    z-index: 2;
    white-space: nowrap;
}

/* Text section */
.vps-banner-text {
    flex: 1;
}

.vps-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 15px;
    background: rgba(255, 120, 0, 0.18);
    border: 1px solid rgba(255, 120, 0, 0.35);
    border-radius: 50px;
    color: #ffb870;
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vps-banner-tag i {
    font-size: 10px;
    color: #FF7800;
}

.vps-banner-title {
    font-family: "Roboto", sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.vps-banner-title span {
    color: #FF9000;
}

.vps-banner-desc {
    font-family: "Rosario", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 26px;
}

/* Stats row */
.vps-banner-stats {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.vps-stat {
    padding: 14px 26px;
    text-align: center;
    position: relative;
}

.vps-stat + .vps-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.vps-stat-value {
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}

.vps-stat-value span {
    color: #FF9000;
}

.vps-stat-label {
    font-family: "Rosario", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* CTA buttons */
.vps-banner-cta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 190px;
}

.vps-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: #FF7800;
    border: 2px solid transparent;
    border-radius: 8px;
    color: #FFFFFF;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 24px rgba(255, 120, 0, 0.4),
        0 2px 6px rgba(255, 120, 0, 0.2);
    white-space: nowrap;
}

.vps-btn-primary i {
    font-size: 13px;
    transition: transform 0.3s;
}

.vps-btn-primary:hover {
    background: transparent;
    border-color: #FF7800;
    color: #FF9000;
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(255, 120, 0, 0.25),
        0 0 0 4px rgba(255, 120, 0, 0.1);
}

.vps-btn-primary:hover i {
    transform: translateX(4px);
}

.vps-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Rosario", sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.vps-btn-secondary i {
    font-size: 11px;
    transition: transform 0.3s;
}

.vps-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

.vps-btn-secondary:hover i {
    transform: translateX(3px);
}

/* ===========================
   ENTRANCE ANIMATIONS
   =========================== */
@keyframes vpsSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vps-header {
    animation: vpsSlideUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.vps-card {
    animation: vpsSlideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.vps-card:nth-child(1) { animation-delay: 0.05s; }
.vps-card:nth-child(2) { animation-delay: 0.12s; }
.vps-card:nth-child(3) { animation-delay: 0.19s; }
.vps-card:nth-child(4) { animation-delay: 0.26s; }

.vps-banner {
    animation: vpsSlideUp 0.7s 0.33s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1100px) {
    .vps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vps-banner-content {
        gap: 32px;
        padding: 42px 40px;
    }

    .vps-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 860px) {
    .vps-banner-content {
        flex-wrap: wrap;
        gap: 28px;
    }

    .vps-banner-cta {
        min-width: auto;
        width: 100%;
        flex-direction: row;
    }

    .vps-btn-primary,
    .vps-btn-secondary {
        flex: 1;
    }

    .vps-banner-stats {
        width: 100%;
    }

    .vps-stat {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .vps-section {
        padding: 70px 0;
    }

    .vps-header {
        margin-bottom: 50px;
    }

    .vps-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vps-card {
        padding: 28px 24px;
        display: flex;
        align-items: flex-start;
        gap: 18px;
    }

    .vps-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
        border-radius: 5px;
    }

    .vps-card-icon svg {
        width: 34px;
        height: 34px;
    }

    .vps-card-number {
        display: none;
    }

    .vps-banner-content {
        padding: 36px 28px;
        gap: 24px;
    }

    .vps-banner-icon-box {
        width: 90px;
        height: 90px;
    }

    .vps-banner-icon-box svg {
        width: 56px;
        height: 56px;
    }

    .vps-banner-title {
        font-size: 21px;
    }

    .vps-stat-value {
        font-size: 20px;
    }

    .vps-stat {
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .vps-section {
        padding: 60px 0;
    }

    .vps-title {
        font-size: 32px;
    }

    .vps-grid {
        gap: 12px;
    }

    .vps-banner-cta {
        flex-direction: column;
    }

    .vps-banner-stats {
        flex-wrap: wrap;
    }

    .vps-stat {
        flex: 1 1 45%;
    }

    .vps-stat + .vps-stat::before {
        display: none;
    }
}

@media (max-width: 360px) {
    .vps-title {
        font-size: 28px;
    }

    .vps-banner-content {
        padding: 28px 20px;
    }

    .vps-banner-title {
        font-size: 19px;
    }
}

        /* ===========================
           COUNTDOWN TIMER - WHITE BG VERSION
           =========================== */
        
        .offer-countdown-section {
            background: #FFFFFF;
            padding: 50px 20px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
        }

        /* Subtle decorative elements */
        .offer-countdown-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(1, 37, 125, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .offer-countdown-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255, 120, 0, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .countdown-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        /* Header */
        .countdown-header {
            margin-bottom: 36px;
        }

        .countdown-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 120, 0, 0.08);
            border: 1.5px solid rgba(255, 120, 0, 0.2);
            padding: 7px 18px;
            border-radius: 50px;
            color: #FF7800;
            font-family: "Roboto", sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .countdown-badge i {
            font-size: 11px;
            animation: flash 1.5s ease infinite;
        }

        @keyframes flash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .countdown-title {
            font-family: "Roboto", sans-serif;
            font-size: clamp(26px, 4vw, 42px);
            font-weight: 900;
            color: #3a3a3a;
            margin-bottom: 10px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        .countdown-title span {
            color: #FF7800;
        }

        .countdown-subtitle {
            font-family: "Rosario", sans-serif;
            font-size: 17px;
            color: #808285;
            font-weight: 400;
        }

        /* Timer Display */
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-bottom: 36px;
        }

        .timer-box {
            background: #FFFFFF;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            padding: 24px 18px;
            min-width: 95px;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .timer-box:hover {
            border-color: #01257D;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(1, 37, 125, 0.12);
        }

        .timer-value {
            font-family: "Roboto", sans-serif;
            font-size: 44px;
            font-weight: 900;
            background: linear-gradient(135deg, #01257D 0%, #0C379A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
        }

        .timer-label {
            font-family: "Rosario", sans-serif;
            font-size: 12px;
            color: #808285;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .timer-separator {
            display: flex;
            align-items: center;
            font-size: 34px;
            font-weight: 900;
            color: rgba(1, 37, 125, 0.2);
            padding: 0 4px;
            animation: blink 1s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }

        /* CTA Button */
        .countdown-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #FF7800;
            color: #FFFFFF;
            font-family: "Roboto", sans-serif;
            font-size: 16px;
            font-weight: 700;
            padding: 17px 38px;
            border: 2px solid transparent;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(255, 120, 0, 0.25);
            text-decoration: none;
        }

        .countdown-cta i {
            font-size: 14px;
            transition: transform 0.3s;
        }

        .countdown-cta:hover {
            background: #01257D;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(1, 37, 125, 0.25);
        }

        .countdown-cta:hover i {
            transform: translateX(4px);
        }

        /* ===========================
           RESPONSIVE DESIGN
           =========================== */
        @media (max-width: 768px) {
            .offer-countdown-section {
                padding: 40px 20px;
            }

            .countdown-timer {
                gap: 14px;
            }

            .timer-box {
                padding: 18px 14px;
                min-width: 75px;
            }

            .timer-value {
                font-size: 36px;
            }

            .timer-label {
                font-size: 10px;
            }

            .timer-separator {
                font-size: 26px;
                padding: 0 2px;
            }

            .countdown-cta {
                font-size: 15px;
                padding: 15px 30px;
            }
        }

        @media (max-width: 480px) {
            .offer-countdown-section {
                padding: 35px 16px;
            }

            .countdown-timer {
                gap: 10px;
            }

            .timer-box {
                padding: 16px 12px;
                min-width: 65px;
            }

            .timer-value {
                font-size: 30px;
            }

            .timer-label {
                font-size: 9px;
            }

            .timer-separator {
                font-size: 22px;
            }

            .countdown-cta {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 360px) {
            .timer-box {
                min-width: 58px;
                padding: 14px 10px;
            }

            .timer-value {
                font-size: 26px;
            }
        }
/* ===========================
   EMAIL FEATURES SECTION
   Using existing stylesheet variables
   =========================== */

.email-features-section {
    background: var(--color-white);
    padding: 100px 0;
    position: relative;
}

/* ===========================
   SECTION HEADER
   =========================== */

.email-features-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.email-features-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.email-features-subtitle {
    font-size: 17px;
    color: var(--color-gray);
    line-height: 1.6;
    font-weight: 400;
}

/* ===========================
   FEATURES GRID
   =========================== */

.email-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   FEATURE CARD
   =========================== */

.email-feature-card {
    background: var(--color-light-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.email-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Feature Icon */
.email-feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-feature-icon svg {
    width: 80px;
    height: 80px;
}

/* Feature Name */
.email-feature-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Feature Description */
.email-feature-desc {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .email-features-section {
        padding: 80px 0;
    }
    
    .email-features-title {
        font-size: 36px;
    }
    
    .email-features-subtitle {
        font-size: 16px;
    }
    
    .email-features-grid {
        gap: 25px;
    }
    
    .email-feature-card {
        padding: 35px 25px;
    }
    
    .email-feature-name {
        font-size: 20px;
    }
}

@media (max-width: 968px) {
    .email-features-section {
        padding: 70px 0;
    }
    
    .email-features-header {
        margin-bottom: 50px;
    }
    
    .email-features-title {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .email-features-subtitle {
        font-size: 15px;
    }
    
    .email-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .email-feature-card {
        padding: 32px 24px;
    }
    
    .email-feature-icon {
        margin-bottom: 20px;
    }
    
    .email-feature-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .email-feature-name {
        font-size: 19px;
        margin-bottom: 14px;
    }
    
    .email-feature-desc {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .email-features-section {
        padding: 60px 0;
    }
    
    .email-features-header {
        margin-bottom: 40px;
    }
    
    .email-features-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .email-features-subtitle {
        font-size: 15px;
    }
    
    .email-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .email-feature-card {
        padding: 35px 28px;
    }
    
    .email-feature-icon {
        margin-bottom: 18px;
    }
    
    .email-feature-icon svg {
        width: 65px;
        height: 65px;
    }
    
    .email-feature-name {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .email-feature-desc {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .email-features-section {
        padding: 50px 0;
    }
    
    .email-features-header {
        margin-bottom: 35px;
    }
    
    .email-features-title {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .email-features-subtitle {
        font-size: 14px;
    }
    
    .email-features-grid {
        gap: 18px;
    }
    
    .email-feature-card {
        padding: 30px 24px;
    }
    
    .email-feature-icon {
        margin-bottom: 16px;
    }
    
    .email-feature-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .email-feature-name {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .email-feature-desc {
        font-size: 13px;
        line-height: 1.6;
    }
}




/* ===========================
   JELLYFISH SECTION
   Using existing stylesheet variables
   =========================== */

.jellyfish-section {
    background: linear-gradient(135deg, var(--navy-blue) 0%, #01206b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.jellyfish-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(1, 104, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 120, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ===========================
   SECTION HEADER
   =========================== */

.jellyfish-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.jellyfish-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

/* ===========================
   CONTENT AREA
   =========================== */

.jellyfish-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===========================
   IMAGE SIDE
   =========================== */

.jellyfish-image-wrapper {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jellyfish-image {
    width: 100%;
    max-width: 576px;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ===========================
   TEXT SIDE
   =========================== */

.jellyfish-text {
    order: 1;
    color: var(--color-white);
}

.jellyfish-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.jellyfish-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
}

.jellyfish-badge {
    display: inline-block;
    background: var(--orange-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Description */
.jellyfish-description {
    margin-bottom: 28px;
}

.jellyfish-description p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.jellyfish-description p:last-child {
    margin-bottom: 0;
}

/* Link */
.jellyfish-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-light);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.jellyfish-link:hover {
    color: var(--orange-bright);
    gap: 12px;
}

.jellyfish-link .arrow-icon {
    transition: transform 0.3s ease;
}

.jellyfish-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* ===========================
   FEATURES LIST
   =========================== */

.jellyfish-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.jellyfish-features-col {
    display: flex;
}

.jellyfish-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jellyfish-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.5;
}

.feature-check {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .jellyfish-section {
        padding: 80px 0;
    }
    
    .jellyfish-main-title {
        font-size: 36px;
    }
    
    .jellyfish-content {
        gap: 50px;
    }
    
    .jellyfish-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 968px) {
    .jellyfish-section {
        padding: 70px 0;
    }
    
    .jellyfish-header {
        margin-bottom: 50px;
    }
    
    .jellyfish-main-title {
        font-size: 32px;
    }
    
    .jellyfish-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .jellyfish-image-wrapper {
        order: 1;
    }
    
    .jellyfish-text {
        order: 2;
    }
    
    .jellyfish-subtitle {
        font-size: 26px;
    }
    
    .jellyfish-description p {
        font-size: 15px;
    }
    
    .jellyfish-link {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .jellyfish-features {
        gap: 25px;
    }
    
    .jellyfish-features-list li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .jellyfish-section {
        padding: 60px 0;
    }
    
    .jellyfish-header {
        margin-bottom: 40px;
    }
    
    .jellyfish-main-title {
        font-size: 28px;
    }
    
    .jellyfish-content {
        gap: 35px;
    }
    
    .jellyfish-title-wrapper {
        margin-bottom: 18px;
    }
    
    .jellyfish-subtitle {
        font-size: 24px;
    }
    
    .jellyfish-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .jellyfish-description {
        margin-bottom: 24px;
    }
    
    .jellyfish-description p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }
    
    .jellyfish-link {
        margin-bottom: 26px;
    }
    
    .jellyfish-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .jellyfish-features-list {
        gap: 14px;
    }
    
    .jellyfish-features-list li {
        font-size: 15px;
    }
    
    .feature-check {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .jellyfish-section {
        padding: 50px 0;
    }
    
    .jellyfish-header {
        margin-bottom: 35px;
    }
    
    .jellyfish-main-title {
        font-size: 24px;
    }
    
    .jellyfish-content {
        gap: 30px;
    }
    
    .jellyfish-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .jellyfish-subtitle {
        font-size: 22px;
    }
    
    .jellyfish-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .jellyfish-description {
        margin-bottom: 22px;
    }
    
    .jellyfish-description p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .jellyfish-link {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .jellyfish-link .arrow-icon {
        width: 14px;
        height: 14px;
    }
    
    .jellyfish-features {
        gap: 18px;
    }
    
    .jellyfish-features-list {
        gap: 12px;
    }
    
    .jellyfish-features-list li {
        font-size: 14px;
        gap: 10px;
    }
    
    .feature-check {
        width: 16px;
        height: 16px;
    }
}





/* ===========================
   BUSINESS EMAIL SECTION
   Using existing stylesheet variables
   =========================== */

.business-email-section {
    background: var(--color-white);
    padding: 100px 0;
    position: relative;
}

/* ===========================
   SECTION HEADER
   =========================== */

.business-email-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.business-email-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.business-email-subtitle {
    font-size: 17px;
    color: var(--color-gray);
    line-height: 1.7;
    font-weight: 400;
}

/* ===========================
   FEATURES GRID
   =========================== */

.business-email-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.business-email-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ===========================
   FEATURE ITEM
   =========================== */

.business-feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

/* Feature Icon */
.business-feature-icon {
    flex-shrink: 0;
}

.business-feature-icon svg {
    width: 80px;
    height: 80px;
    display: block;
}

/* Feature Content */
.business-feature-content {
    flex: 1;
}

.business-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.business-feature-desc {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Feature Link */
.business-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red-accent);
    font-size: 15px;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.business-feature-link:hover {
    gap: 10px;
    text-decoration: underline;
}

.business-feature-link svg {
    transition: transform 0.3s ease;
}

.business-feature-link:hover svg {
    transform: translateX(3px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .business-email-section {
        padding: 80px 0;
    }
    
    .business-email-header {
        margin-bottom: 60px;
    }
    
    .business-email-title {
        font-size: 36px;
    }
    
    .business-email-subtitle {
        font-size: 16px;
    }
    
    .business-email-features {
        gap: 60px;
    }
    
    .business-email-column {
        gap: 45px;
    }
    
    .business-feature-item {
        gap: 20px;
    }
    
    .business-feature-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .business-feature-title {
        font-size: 20px;
    }
}

@media (max-width: 968px) {
    .business-email-section {
        padding: 70px 0;
    }
    
    .business-email-header {
        margin-bottom: 50px;
    }
    
    .business-email-title {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .business-email-subtitle {
        font-size: 15px;
    }
    
    .business-email-features {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .business-email-column {
        gap: 40px;
    }
    
    .business-feature-item {
        gap: 20px;
    }
    
    .business-feature-icon svg {
        width: 65px;
        height: 65px;
    }
    
    .business-feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .business-feature-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .business-email-section {
        padding: 60px 0;
    }
    
    .business-email-header {
        margin-bottom: 45px;
    }
    
    .business-email-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .business-email-subtitle {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .business-email-features {
        gap: 45px;
    }
    
    .business-email-column {
        gap: 35px;
    }
    
    .business-feature-item {
        gap: 18px;
    }
    
    .business-feature-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .business-feature-title {
        font-size: 19px;
    }
    
    .business-feature-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .business-feature-link {
        font-size: 14px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .business-email-section {
        padding: 50px 0;
    }
    
    .business-email-header {
        margin-bottom: 40px;
    }
    
    .business-email-title {
        font-size: 24px;
        margin-bottom: 14px;
    }
    
    .business-email-subtitle {
        font-size: 14px;
    }
    
    .business-email-features {
        gap: 40px;
    }
    
    .business-email-column {
        gap: 32px;
    }
    
    .business-feature-item {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .business-feature-icon {
        margin: 0 auto;
    }
    
    .business-feature-icon svg {
        width: 70px;
        height: 70px;
    }
    
    .business-feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .business-feature-desc {
        font-size: 14px;
    }
    
    .business-feature-link {
        font-size: 14px;
        justify-content: center;
    }
}

/* ===========================
   ENTERPRISE SOLUTIONS SECTION
   Unique class names to avoid conflicts
   =========================== */

/* Container */
.max-width-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Section Wrapper */
.enterprise-solutions-wrapper {
    background: linear-gradient(135deg, #01257D 0%, #011d5f 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.enterprise-solutions-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 120, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 144, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ===========================
   HEADER AREA
   =========================== */
.enterprise-header-area {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.enterprise-main-heading {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.enterprise-intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
}

/* ===========================
   FEATURES GRID
   =========================== */
.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* ===========================
   FEATURE BOX
   =========================== */
.enterprise-feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.enterprise-feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 120, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===========================
   FEATURE ICON
   =========================== */
.feature-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.feature-icon-wrapper svg {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.enterprise-feature-box:hover .feature-icon-wrapper svg {
    transform: scale(1.1);
}

/* ===========================
   FEATURE TEXT CONTENT
   =========================== */
.feature-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-heading-text {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* ===========================
   CTA AREA
   =========================== */
.enterprise-cta-area {
    text-align: center;
    position: relative;
    z-index: 1;
}

.enterprise-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF7800;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.enterprise-action-button:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.4);
    color: #FFFFFF;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Large Tablets (1024px and below) */
@media (max-width: 1024px) {
    .enterprise-features-grid {
        gap: 35px;
    }
    
    .enterprise-main-heading {
        font-size: 42px;
    }
    
    .enterprise-intro-text {
        font-size: 17px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .enterprise-solutions-wrapper {
        padding: 60px 0;
    }
    
    .enterprise-header-area {
        margin-bottom: 50px;
    }
    
    .enterprise-main-heading {
        font-size: 36px;
        margin-bottom: 18px;
    }
    
    .enterprise-intro-text {
        font-size: 16px;
    }
    
    .enterprise-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .enterprise-feature-box {
        padding: 35px 25px;
    }
    
    .feature-heading-text {
        font-size: 20px;
    }
    
    .feature-description-text {
        font-size: 14px;
    }
    
    .enterprise-action-button {
        font-size: 16px;
        padding: 14px 40px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .enterprise-solutions-wrapper {
        padding: 50px 0;
    }
    
    .enterprise-header-area {
        margin-bottom: 40px;
    }
    
    .enterprise-main-heading {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .enterprise-intro-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .enterprise-features-grid {
        gap: 25px;
        margin-bottom: 35px;
    }
    
    .enterprise-feature-box {
        padding: 30px 20px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon-wrapper svg {
        width: 50px;
        height: 50px;
    }
    
    .feature-heading-text {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-description-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .enterprise-action-button {
        font-size: 15px;
        padding: 13px 36px;
        width: 100%;
    }
}

/* Extra Small (360px and below) */
@media (max-width: 360px) {
    .enterprise-main-heading {
        font-size: 24px;
    }
    
    .enterprise-intro-text {
        font-size: 14px;
    }
    
    .enterprise-feature-box {
        padding: 25px 15px;
    }
    
    .feature-heading-text {
        font-size: 17px;
    }
    
    .feature-description-text {
        font-size: 12px;
    }
}

