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

body {
    font-family: "Titillium Web", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 10px;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-default {
    opacity: 1;
}

.logo-scrolled {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.header.scrolled .logo-default {
    opacity: 0;
}

.header.scrolled .logo-scrolled {
    opacity: 1;
}

.logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.header.scrolled .nav-menu a {
    color: #333;
}



.nav-menu a:hover {
    color: #ff6b35;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
}

.header.scrolled .dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.header.scrolled .dropdown-menu a {
    color: #ffffff;
}





.dropdown-menu a:hover {
    color: #ff6b35;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-number {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.header.scrolled .phone-number {
    color: #333;
}



.chat-btn {
    background: #FF6600;
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.3s ease;
    margin-left: 10px;
}

.chat-btn:hover {
    background: #e55a2b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.header.scrolled .hamburger span {
    background: #333;
}



/* Hero Section */
.hero {
    background: url('../images/hero-bg.webp') center/cover no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    color: #fff;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.4;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-form {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    max-width: 100%;
    margin-left: auto;
    border: 1px solid #e0e0e0;
    width: 100%;
}

.form-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    justify-content: flex-start;
}

.form-logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 11px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-form .form-group {
    margin-bottom: 12px;
}

.hero-form .form-group input,
.hero-form .form-group select,
.hero-form .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 13px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.hero-form .form-group input:focus,
.hero-form .form-group select:focus,
.hero-form .form-group textarea:focus {
    outline: none;
    border-color: #FF6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.hero-form .form-group input::placeholder,
.hero-form .form-group textarea::placeholder {
    color: #999;
}

.hero-submit {
    width: 100%;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #FF6600;
    color: #333;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.hero-submit:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FF6600;
    color: #333;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

/* Quick Quote Section */
.quick-quote {
    background: #f8f9fa;
    padding: 60px 0;
}

.quote-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.quote-form h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #fff;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

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

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #007bff;
}

.service-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

/* About Section */
.about {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.services-list li {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

.about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium Services */
.premium-services {
    padding: 80px 0;
    background: #fff;
}

.premium-services h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
}

.premium-services > .container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.premium-service-item {
    background: #fff;
    padding: 40px;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    min-height: 300px;
}

.premium-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 40px;
    color: #007bff;
}

.premium-service-item h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.premium-service-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    height: 140px; /* Increased height for more text */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
}

.premium-service-item p::-webkit-scrollbar {
    width: 6px;
}

.premium-service-item p::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.premium-service-item p::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.premium-service-item p::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Premium Services Text Section */
.premium-services-text {
    margin-top: 50px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.premium-services-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
    text-align: left;
}

.premium-services-text p:last-child {
    margin-bottom: 0;
}

/* Legacy service-item styles for other sections */
.service-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-item h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.cta-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.promo-image {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.phone-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Additional Services */
.additional-services {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.additional-services h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.additional-services p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.testimonial-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rating span {
    background: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.contact-form-section p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 120px;
    margin-bottom: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
}

.footer-section ul li i {
    color: #666;
    font-size: 12px;
    margin-right: 12px;
    margin-top: 2px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 17px;
    font-weight: 600;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    font-size: 17px;
    font-weight: 500;
}

.footer-contact {
    margin-top: 18px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    color: #ccc;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}

.footer-contact p i {
    color: #666;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 20px;
}

.back-to-top {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Chat widget removed to avoid duplication with contact sidebar */



/* Contact Sidebar */
.contact-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 997;
    width: 60px;
}

.sidebar-chat-btn {
    width: 60px;
    height: 80px;
    background: #FF6600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: width 0.3s ease, right 0.3s ease;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    right: 0;
}

.sidebar-chat-btn i {
    color: #fff;
    font-size: 16px;
    transition: margin-right 0.3s ease;
}

.sidebar-chat-text {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 15px;
    max-width: 200px;
    overflow: hidden;
}

.sidebar-chat-btn.expanded {
    width: 250px;
    right: 190px;
}

.sidebar-chat-btn.expanded i {
    margin-right: 10px;
}

.sidebar-chat-btn.expanded .sidebar-chat-text {
    opacity: 1;
}

.sidebar-phone-btn {
    width: 60px;
    height: 80px;
    background: #FF6600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: width 0.3s ease, right 0.3s ease;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    right: 0;
}

.sidebar-phone-btn i {
    color: #fff;
    font-size: 16px;
    transition: margin-right 0.3s ease;
}

.sidebar-phone-text {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 15px;
    max-width: 200px;
    overflow: hidden;
}

.sidebar-phone-btn.expanded {
    width: 250px;
    right: 190px;
}

.sidebar-phone-btn.expanded i {
    margin-right: 10px;
}

.sidebar-phone-btn.expanded .sidebar-phone-text {
    opacity: 1;
}

.sidebar-live-chat-btn {
    width: 60px;
    height: 160px;
    background: #FF6600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: none;
    overflow: visible;
    flex-shrink: 0;
}

.sidebar-live-chat-btn span {
    color: #fff;
    transform: rotate(180deg);
}

/* Floating Chat Button */
.floating-chat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #FFD700;
    color: #333;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 998;
}

.floating-chat-btn:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.floating-chat-btn i {
    font-size: 16px;
    color: #333;
}

.floating-chat-btn span {
    color: #333;
    font-weight: bold;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    z-index: 999;
    overflow: hidden;
}

.chat-widget.active {
    display: flex;
}

.chat-widget-header {
    background: #FFD700;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.chat-widget-title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    flex: 1;
}

.chat-widget-controls {
    display: flex;
    gap: 10px;
}

.chat-widget-btn {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 3px;
    font-size: 10px;
    transition: color 0.3s ease;
}

.chat-widget-btn:hover {
    color: #666;
}

.minimize-btn {
    padding: 2px 4px;
    font-size: 8px;
}

.chat-widget-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.consultant-info {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eee;
}

.consultant-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.consultant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultant-details {
    flex: 1;
}

.consultant-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
}

.consultant-title {
    font-size: 12px;
    color: #666;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-input-area {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.chat-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #f5f5f5;
}

.chat-input:focus {
    outline: none;
    border-color: #FFD700;
}

.chat-input-actions {
    display: flex;
    gap: 5px;
}

.chat-action-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 12px;
    transition: color 0.3s ease;
}

.chat-action-btn:hover {
    color: #333;
}

.chat-branding {
    text-align: left;
    font-size: 10px;
    color: #999;
}

/* Hide floating chat button on mobile to avoid conflicts */
@media (max-width: 768px) {
    .floating-chat-btn {
        display: none;
    }
    
    .chat-widget {
        width: 100%;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    .chat-widget-header {
        border-radius: 0;
    }
}

/* Hide contact sidebar on mobile */
@media (max-width: 768px) {
    .contact-sidebar {
        display: none;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.close:hover {
    color: #333;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-form input,
.chat-form textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.chat-form input:focus,
.chat-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 0;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    /* Ensure mobile menu stays dark even when header is scrolled */
    .header.scrolled .nav-menu {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        text-align: center;
    }
    
    .nav-menu a {
        color: #ffffff !important;
        font-size: 18px;
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 10px;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        margin: 5px 0;
        padding: 0;
    }
    
    .dropdown-menu a {
        color: #ffffff !important;
        font-size: 16px;
        padding: 10px 20px;
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Mobile header adjustments */
    .navbar {
        padding: 10px 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .chat-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    /* Hide desktop phone number on mobile */
    .header-contact .phone-number {
        display: none;
    }
    
    /* Style mobile phone number */
    .mobile-phone {
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 80px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-phone .phone-number {
        color: #ffffff !important;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        display: block;
        text-align: center;
        padding: 15px 20px;
    }
    
    /* Show mobile phone number only on mobile */
    .mobile-phone {
        display: block !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-form {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons,
    .about-buttons,
    .service-buttons,
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* Hide mobile phone number on desktop */
.mobile-phone {
    display: none;
} 

/* Partners/Trusted By Section */
.partners-section {
    background: #ff6b35;
    padding: 40px 0;
    overflow: hidden;
}

.partners-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    animation: slidePartners 20s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.client-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive adjustments for partners */
@media (max-width: 768px) {
    .partners-slider {
        gap: 20px;
        animation-duration: 15s;
    }
    
    .partner-logo {
        min-width: 120px;
    }
    
    .client-logo {
        height: 40px;
    }
} 

/* Sign Up Section */
.signup-section {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.signup-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.signup-form {
    max-width: 1000px;
    margin: 0 auto;
}

.signup-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.signup-form .form-group {
    margin-bottom: 0;
}

.signup-form .form-group input,
.signup-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.signup-form .form-group input:focus,
.signup-form .form-group select:focus {
    outline: none;
    border-color: #FF6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.signup-form .form-group input::placeholder {
    color: #999;
}

.submit-btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    height: 48px;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Responsive adjustments for signup section */
@media (max-width: 768px) {
    .signup-section h2 {
        font-size: 20px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .signup-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .submit-btn {
        width: 100%;
        min-width: auto;
    }
} 

/* Services/CTA Section */
.services-cta-section {
    padding: 80px 0;
}

.services-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-cta-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px;
}

.services-cta-text p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.services-cta-section .services-list {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.services-cta-section .services-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-cta-section .services-column li {
    color: #333;
    font-size: 15px;
    position: relative;
    background: none;
    display: flex;
    align-items: center;
    margin-right: 80px;
}

.services-cta-section .services-column li:before {
    content: "•";
    color: #999;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-40%);
    font-size: 18px;
}

.services-cta-buttons {
    display: flex;
    gap: 20px;
}

.services-cta-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-cta-buttons .btn-primary {
    background: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
}

.services-cta-buttons .btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

.services-cta-buttons .btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.services-cta-buttons .btn-secondary:hover {
    background: #ff6b35;
    color: #fff;
}

.services-cta-image {
    text-align: center;
}

.author-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services/CTA Section Responsive */
@media (max-width: 768px) {
    .services-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-cta-text h2 {
        font-size: 28px;
    }
    
    .services-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-cta-buttons {
        flex-direction: column;
    }
    
    .services-cta-buttons .btn {
        text-align: center;
    }
}

/* Premium Services Responsive */
@media (max-width: 1024px) {
    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .premium-services h1 {
        font-size: 32px;
    }
    
    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-service-item {
        padding: 25px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
}

/* New CTA Section */
.new-cta-section {
    background: #fff;
    padding: 0 0 80px 0;
}

.new-cta-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
    margin-right: 200px;
}

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

.madagascar-penguins {
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.new-cta-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.new-cta-text p {
    font-size: 18px;
    color: #ff6b35;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: center;
}

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

/* Responsive styles for new-cta-section */
@media (max-width: 1024px) {
    .new-cta-content {
        margin-right: 100px;
        gap: 30px;
    }
    
    .new-cta-text h2 {
        font-size: 32px;
    }
    
    .new-cta-text p {
        font-size: 16px;
    }
    
    .madagascar-penguins {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .new-cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-right: 0;
        text-align: center;
    }
    
    .new-cta-text h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .new-cta-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .new-cta-buttons {
        gap: 12px;
        justify-content: center;
    }
    
    .new-cta-buttons .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .madagascar-penguins {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .new-cta-section {
        padding: 0 0 60px 0;
    }
    
    .new-cta-content {
        gap: 25px;
    }
    
    .new-cta-text h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .new-cta-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .new-cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .new-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .madagascar-penguins {
        max-width: 200px;
    }
}

.btn-orange {
    background: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-orange:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

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

.globe-img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

/* Additional Services Section */
.additional-services-section {
    background: #fff;
    padding: 80px 0;
}

.additional-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.additional-services-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.additional-services-text p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.additional-services-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.additional-services-list li {
    color: #000;
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.additional-services-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
}

.additional-services-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.additional-services-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.additional-services-buttons .btn-orange {
    background: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
}

.additional-services-buttons .btn-orange:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
}

.book-spines-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-spines-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    background: url('../images/testi-bg.png') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-title {
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.testimonial-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    flex: 1;
    max-width: 350px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    color: rgba(255, 107, 53, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card h3 {
    color: #333;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.testimonial-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    font-style: italic;
}

.rating-categories {
    margin-top: auto;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.rating-item:last-child {
    border-bottom: none;
}

.category {
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stars {
    color: #ffd700;
    font-size: 14px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.nav-arrow {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    border: 2px solid #e9ecef;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.nav-arrow:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    border-color: #ff6b35;
}

.nav-arrow:hover::before {
    left: 100%;
}

.nav-arrow:active {
    transform: scale(0.95);
}

/* Carousel indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .testimonials-carousel {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
    }
    
    .testimonial-card {
        max-width: 100%;
        min-height: 300px;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .carousel-nav {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
        min-height: 280px;
    }
    
    .testimonial-card h3 {
        font-size: 20px;
    }
    
    .testimonial-card p {
        font-size: 15px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Contact Form Section - New Design */
.contact-form-section {
    background: #fff;
    padding: 60px 0;
    text-align: center;
}

.contact-form-section h2 {
    color: #333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #ff6b35;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 500;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 20px;
    padding: 30px 50px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 25px;
}

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

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form-submit {
    text-align: center;
    margin-top: 15px;
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    padding: 15px 60px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:active {
    transform: translateY(0);
}

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

.contact-option {
    text-align: center;
    padding: 25px 20px;
    background: #fff;
    border: 2px solid #ff6b35;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.contact-option:hover::before {
    opacity: 0.05;
}

.contact-option h3 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.contact-btn {
    background: #fff;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.contact-btn:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-section h2 {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
        margin: 0 20px 30px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 20px;
    }
    
    .contact-option {
        padding: 20px 15px;
    }
    
    .submit-btn {
        padding: 12px 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 50px 0;
    }
    
    .contact-form-section h2 {
        font-size: 24px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .contact-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .footer-section h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .footer-section ul li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-section ul li a {
        font-size: 15px;
    }
    
    .footer-section p {
        font-size: 15px;
    }
    
    .footer-contact p {
        font-size: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        font-size: 14px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .footer-contact p {
        font-size: 14px;
    }
}

/* Publishing Page Specific Styles */
.publishing-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.publishing-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.publishing-services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.publishing-services > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.service-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item ul li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Publishing Process Section */
.publishing-process {
    padding: 80px 0;
    background: #fff;
}

.publishing-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
}

.publishing-process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Publishing Packages Section */
.publishing-packages {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.publishing-packages h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.publishing-packages h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

.package-card {
    background: #fff;
    color: #2c3e50;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.package-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid #ff6b35;
}

.package-card.featured::after {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff6b35;
    color: #fff;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 30px;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.package-card ul li {
    padding: 10px 0;
    color: #6c757d;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.package-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

.package-card .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 200px;
}

/* Responsive Design for Publishing Page */
@media (max-width: 768px) {
    .publishing-services h2,
    .publishing-process h2,
    .publishing-packages h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .publishing-services > .container > p,
    .cta-section p {
        font-size: 1rem;
    }
    
    .services-grid,
    .process-steps,
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item,
    .package-card {
        padding: 30px 20px;
    }
    
    .step {
        padding: 25px 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .publishing-services,
    .publishing-process,
    .publishing-packages,
    .cta-section {
        padding: 60px 0;
    }
    
    .publishing-services h2,
    .publishing-process h2,
    .publishing-packages h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .service-item h3,
    .package-card h3 {
        font-size: 1.3rem;
    }
    
    .package-card .price {
        font-size: 2rem;
    }
    
    .step h3 {
        font-size: 1.1rem;
    }
    
    .service-item ul li,
    .package-card ul li {
        font-size: 0.9rem;
    }
}

/* Publishing Page Hero Specific Styles */
.hero.publishing-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%), url('../images/hero-bg.webp') center/cover no-repeat;
    min-height: 80vh;
}

.hero.publishing-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.hero.publishing-hero .hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero.publishing-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero.publishing-hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero.publishing-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero.publishing-hero .hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 200px;
}

@media (max-width: 768px) {
    .hero.publishing-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .hero.publishing-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .hero.publishing-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero.publishing-hero .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero.publishing-hero .hero-title {
        font-size: 2rem;
    }
    
    .hero.publishing-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero.publishing-hero .hero-description {
        font-size: 1rem;
    }
}

/* About Us Page Specific Styles */
.hero.about-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9)), url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero.about-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    padding: 0 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero.about-hero .hero-subtitle {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero.about-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
}

.hero.about-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    text-align: center;
}

.hero.about-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero.about-hero .hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

/* About Company Section */
.about-company {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 35px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 3px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 25px;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Our Mission Section */
.our-mission {
    padding: 100px 0;
    background: #f8f9fa;
}

.our-mission h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 70px;
    position: relative;
}

.our-mission h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 3px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-item {
    text-align: center;
    padding: 50px 35px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-item:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 25px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.mission-item:hover .mission-icon {
    transform: scale(1.1);
}

.mission-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.mission-item h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mission-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #fff;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 70px;
    position: relative;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 3px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35, #f7931e);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.reason-item:hover::before {
    transform: scaleY(1);
}

.reason-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.reason-item:hover .reason-number {
    transform: scale(1.1);
}

.reason-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.reason-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .hero.about-hero {
        min-height: 60vh;
        padding: 80px 0;
    }
    
    .hero.about-hero .hero-content {
        padding: 0 20px;
    }
    
    .hero.about-hero .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero.about-hero .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero.about-hero .hero-buttons {
        gap: 15px;
    }
    
    .hero.about-hero .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .about-company,
    .our-mission,
    .why-choose-us,
    .contact-cta {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .our-mission h2,
    .why-choose-us h2,
    .contact-cta h2 {
        font-size: 2.2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero.about-hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .hero.about-hero .hero-content {
        padding: 0 15px;
    }
    
    .hero.about-hero .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero.about-hero .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero.about-hero .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero.about-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero.about-hero .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 220px;
        min-width: auto;
    }
    
    .about-company,
    .our-mission,
    .why-choose-us,
    .contact-cta {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .our-mission h2,
    .why-choose-us h2,
    .contact-cta h2 {
        font-size: 1.8rem;
    }
    
    .mission-item {
        padding: 25px 20px;
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon i {
        font-size: 1.5rem;
    }
    
    .mission-item h3 {
        font-size: 1.2rem;
    }
    
    .mission-item p {
        font-size: 0.9rem;
    }
    
    .reason-item {
        padding: 20px;
    }
    
    .reason-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reason-item h3 {
        font-size: 1.1rem;
    }
    
    .reason-item p {
        font-size: 0.9rem;
    }
    
    .contact-cta h2 {
        font-size: 1.6rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Services Page Specific Styles */
.hero.services-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9)), url('assets/images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero.services-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    padding: 0 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero.services-hero .hero-subtitle {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero.services-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: center;
}

.hero.services-hero .hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    text-align: center;
}

.hero.services-hero .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero.services-hero .hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 160px;
}

/* Detailed Services Section */
.detailed-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.detailed-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.detailed-services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.detailed-services > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card .service-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hero-bg.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.services-cta .container {
    position: relative;
    z-index: 1;
}

.services-cta .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-cta .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta .cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .hero.services-hero {
        min-height: 60vh;
        padding: 80px 0;
    }
    
    .hero.services-hero .hero-content {
        padding: 0 20px;
    }
    
    .hero.services-hero .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero.services-hero .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .hero.services-hero .hero-buttons {
        gap: 15px;
    }
    
    .hero.services-hero .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .detailed-services {
        padding: 60px 0;
    }
    
    .detailed-services h2 {
        font-size: 2.2rem;
    }
    
    .detailed-services > .container > p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .services-cta {
        padding: 60px 0;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .services-cta .cta-content p {
        font-size: 1.1rem;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero.services-hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .hero.services-hero .hero-content {
        padding: 0 15px;
    }
    
    .hero.services-hero .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero.services-hero .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero.services-hero .hero-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero.services-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero.services-hero .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 220px;
        min-width: auto;
    }
    
    .detailed-services {
        padding: 40px 0;
    }
    
    .detailed-services h2 {
        font-size: 1.8rem;
    }
    
    .detailed-services > .container > p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-card ul li {
        font-size: 0.85rem;
    }
    
    .services-cta {
        padding: 40px 0;
    }
    
    .services-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .services-cta .cta-content p {
        font-size: 1rem;
    }
    
    .services-cta .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background: #fff;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.service-icon-large i {
    font-size: 3rem;
    color: #fff;
}

.service-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-header p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-features {
    margin-bottom: 80px;
}

.service-features h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.service-features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #ff6b35;
    transform: translateX(5px);
}

.feature-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-right: 15px;
    font-weight: bold;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
}

.service-process {
    margin-bottom: 60px;
}

.service-process h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.service-process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Service Link Styles */
.service-link {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #f7931e;
}

.service-link:hover::after {
    transform: translateX(3px);
}

/* Premium Services Grid Styles */
.premium-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.premium-services h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.premium-services > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.premium-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.premium-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.premium-service-item:hover::before {
    transform: scaleX(1);
}

.premium-service-item .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.premium-service-item:hover .service-icon {
    transform: scale(1.1);
}

.premium-service-item .service-icon i {
    font-size: 2rem;
    color: #fff;
}

.premium-service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.premium-service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #f7931e;
}

.read-more:hover::after {
    transform: translateX(3px);
}

/* Responsive Design for Service Details */
@media (max-width: 768px) {
    .service-details {
        padding: 60px 0;
    }
    
    .service-header h1 {
        font-size: 2.2rem;
    }
    
    .service-header p {
        font-size: 1.1rem;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-large i {
        font-size: 2.5rem;
    }
    
    .service-features h2,
    .service-process h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .premium-services {
        padding: 60px 0;
    }
    
    .premium-services h1 {
        font-size: 2.2rem;
    }
    
    .premium-services > .container > p {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .premium-service-item {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .service-details {
        padding: 40px 0;
    }
    
    .service-header h1 {
        font-size: 1.8rem;
    }
    
    .service-header p {
        font-size: 1rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
    
    .service-features h2,
    .service-process h2 {
        font-size: 1.6rem;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .step-content h3 {
        font-size: 1rem;
    }
    
    .premium-services {
        padding: 40px 0;
    }
    
    .premium-services h1 {
        font-size: 1.8rem;
    }
    
    .premium-service-item {
        padding: 25px 20px;
    }
    
    .premium-service-item h3 {
        font-size: 1.3rem;
    }
    
    .premium-service-item p {
        font-size: 0.9rem;
    }
}

/* Scrollable Service Content */
.service-content-scrollable {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 15px;
}

.service-content-scrollable::-webkit-scrollbar {
    width: 6px;
}

.service-content-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.service-content-scrollable::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 3px;
}

.service-content-scrollable::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

.service-content-scrollable p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #6c757d;
}

.service-content-scrollable ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content-scrollable ul li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.service-content-scrollable ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 5px;
    color: #ff6b35;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Responsive adjustments for scrollable content */
@media (max-width: 768px) {
    .service-content-scrollable {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .service-content-scrollable {
        max-height: 120px;
    }
    
    .service-content-scrollable p {
        font-size: 0.9rem;
    }
    
    .service-content-scrollable ul li {
        font-size: 0.85rem;
    }
}/ *   E n h a n c e d   F o o t e r   S t y l e s   * / 
 
 / *   E n h a n c e d   F o o t e r   S t y l e s   * / 
 
 . f o o t e r   {   b a c k g r o u n d :   # 2 c 3 e 5 0 ;   c o l o r :   # e c f 0 f 1 ;   p a d d i n g :   6 0 p x   0   2 0 p x ;   m a r g i n - t o p :   8 0 p x ;   } 
 
 