/* style.css - Combined Main CSS with Responsive Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A2A5E;  /* This stays dark blue for other elements */
    --secondary-blue: #0066CC;
    --dark-blue: #051A3A;
    --electric-blue: #00C9FF;
    --saudi-green: #006400;
    --gold-color: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;  /* Light grey for header background */
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-gray: #666666;
    --success-green: #28A745;
    --warning-orange: #FFC107;
    --error-red: #DC3545;
    --whatsapp-color: #25D366;
    --linkedin-color: #0077B5;
    --email-color: #EA4335;  /* Gmail red */
    --phone-color: #34A853;   /* Green for phone */
    --sky-blue: #87CEEB;      /* Sky blue for navigation */
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 15px 0;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text i {
    color: var(--electric-blue);
    margin-right: 8px;
}

.cookie-link {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.cookie-accept-all {
    background: var(--success-green);
    color: var(--white);
}

.cookie-settings {
    background: var(--secondary-blue);
    color: var(--white);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal .modal-content {
    background: var(--white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-gray);
    line-height: 1;
}

.modal-body {
    padding: 20px;
}

.cookie-option {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-toggle {
    position: relative;
    margin-top: 5px;
}

.cookie-toggle input {
    display: none;
}

.toggle-label {
    display: block;
    width: 50px;
    height: 26px;
    background: var(--medium-gray);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .toggle-label {
    background: var(--success-green);
}

.cookie-toggle input:checked + .toggle-label:after {
    left: 27px;
}

.cookie-toggle input:disabled + .toggle-label {
    background: var(--dark-gray);
    cursor: not-allowed;
}

.cookie-option-info h4 {
    margin: 0 0 5px 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-required {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.cookie-option-info p {
    margin: 0;
    color: var(--text-gray);
    font-size: 14px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-save {
    background: var(--secondary-blue);
    color: var(--white);
}

.cookie-accept-all-secondary {
    background: var(--success-green);
    color: var(--white);
}

/* Top Header - Light Grey Background */
.top-header {
    background: var(--light-gray);  /* Changed to light grey */
    color: var(--dark-gray);  /* Dark text for contrast */
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);  /* Added subtle shadow for depth */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 40%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-color);  
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 15px;
    color: var(--text-gray);  /* Darker text for contrast on light bg */
    white-space: nowrap;
    font-weight: 500;
}

.header-center {
    flex: 0 0 40%;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--phone-color);  /* Green for phone text */
}

.email-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--email-color);  /* Red for email text */
}

.contact-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;  /* Will inherit the color from parent */
}

.header-right {
    flex: 0 0 20%;
    display: flex;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* WhatsApp icon - original green */
.social-icon.whatsapp {
    color: var(--whatsapp-color);
    background: rgba(37, 211, 102, 0.1);  /* Light green background */
}

/* LinkedIn icon - original blue */
.social-icon.linkedin {
    color: var(--linkedin-color);
    background: rgba(0, 119, 181, 0.1);  /* Light blue background */
}

.social-icon {
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.social-icon:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Main Navigation - Sky Blue Theme */
.main-nav {
    background: var(--sky-blue);  /* Sky blue background */
    box-shadow: var(--shadow);
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav-menu {
    display: flex;
    list-style: none;
    height: 70px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex: 1;
    display: flex;
}

.nav-menu a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark-blue);  /* Dark blue text on sky blue for better contrast */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--dark-blue);
    background: rgba(255, 255, 255, 0.3);  /* Light overlay on hover */
}

.nav-menu a.active {
    color: var(--dark-blue);
    background: rgba(255, 255, 255, 0.2);  /* Light overlay for active */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--gold-color);  /* Gold underline */
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--dark-blue);  /* Dark blue hamburger icon for contrast */
    background: none;
    border: none;
    padding: 10px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    margin-top: 180px;
    overflow: hidden;
}

.slides-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: var(--saudi-green);
}

.cta-button.secondary:hover {
    background: #004d00;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Right Vertical Contact Panel */
.contact-panel {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    width: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px 0 0 8px;
    box-shadow: var(--shadow);
    transition: width 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.contact-panel:hover {
    width: 200px;
}

.contact-icons {
    display: flex;
    flex-direction: column;
}

.contact-icon-item {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: left;
}

.contact-icon-item:last-child {
    border-bottom: none;
}

.contact-icon-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.icon-container {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.whatsapp-icon .icon-container {
    background: var(--whatsapp-color);
    color: white;
}

.email-icon .icon-container {
    background: var(--email-color);
    color: white;
}

.phone-icon .icon-container {
    background: var(--phone-color);
    color: white;
}

.form-icon .icon-container {
    background: #FF9500;
    color: white;
}

.icon-label {
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    font-weight: 500;
}

.contact-panel:hover .icon-label {
    opacity: 1;
    transform: translateX(0);
}

/* Company Introduction - Light Grey Background with Increased Padding */
.company-intro {
    padding: 100px 0;
    background: var(--light-gray);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.intro-text p {
    margin-bottom: 25px;
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.8;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 25px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* Quick Stats */
.quick-stats {
    padding: 80px 0;
    background: var(--primary-blue);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold-color);
}

.stat-label {
    font-size: 20px;
    font-weight: 500;
}

/* Footer */
.main-footer {
    background: var(--primary-blue);
    color: var(--white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:before {
    content: '›';
    font-size: 20px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links a:hover:before {
    opacity: 1;
}

.footer-contacts {
    list-style: none;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contacts i {
    color: var(--electric-blue);
    width: 22px;
    margin-top: 3px;
    font-size: 16px;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contacts a:hover {
    color: var(--white);
    text-decoration: underline;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    transition: var(--transition);
}

.map-button:hover {
    background: var(--electric-blue);
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 18px;
}

.newsletter-form .input-group {
    display: flex;
    max-width: 550px;
    margin: 0 auto 20px;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.newsletter-form button {
    background: var(--electric-blue);
    color: var(--white);
    border: none;
    padding: 18px 35px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.newsletter-form button:hover {
    background: var(--secondary-blue);
}

.newsletter-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-note input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
}

.newsletter-note label {
    margin: 0;
}

.newsletter-note a {
    color: var(--electric-blue);
    text-decoration: none;
}

.newsletter-note a:hover {
    text-decoration: underline;
}

/* Bottom Footer */
.bottom-footer {
    background: var(--dark-blue);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    flex: 1;
    min-width: 250px;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal .modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    cursor: pointer;
    color: var(--dark-gray);
    background: none;
    border: none;
    line-height: 1;
}

.contact-modal h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.privacy-agreement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}

.privacy-agreement input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.privacy-agreement label {
    margin: 0;
    font-weight: normal;
}

.privacy-agreement a {
    color: var(--secondary-blue);
    text-decoration: none;
}

.privacy-agreement a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--secondary-blue);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--secondary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 997;
    box-shadow: var(--shadow-lg);
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE STYLES - Combined
============================================ */

/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-slider {
        height: 700px;
    }
    
    .page-hero {
        height: 600px;
    }
    
    .slide-content h1 {
        font-size: 56px;
    }
    
    .slide-content p {
        font-size: 28px;
    }
}

/* Large Desktop (1200px - 1399px) */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
        padding: 0 30px;
    }
    
    .slide-content h1 {
        font-size: 42px;
    }
    
    .slide-content p {
        font-size: 22px;
    }
    
    .intro-content {
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Desktop (992px - 1199px) */
@media (max-width: 992px) {
    .container {
        max-width: 960px;
        padding: 0 25px;
    }
    
    /* Header Adjustments */
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-left,
    .header-center,
    .header-right {
        flex: 1 1 100%;
        justify-content: center;
        text-align: center;
    }
    
    .header-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-center {
        order: 3;
        margin-top: 10px;
    }
    
    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 500px;
        margin-top: 180px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .slide-content p {
        font-size: 20px;
    }
    
    /* Content Layouts */
    .intro-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column:first-child {
        padding-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .footer-contacts li {
        justify-content: center;
        text-align: center;
    }
    
    .map-button {
        margin: 15px auto 0;
    }
    
    .newsletter-section {
        margin-top: 30px;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .newsletter-form .input-group {
        max-width: 100%;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    /* Header */
    .top-header {
        padding: 15px 0;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .tagline {
        font-size: 13px;
    }
    
    .main-nav {
        top: 110px;
    }
    
    /* Mobile Navigation */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--sky-blue);  /* Sky blue background for mobile menu */
        box-shadow: var(--shadow);
        height: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        height: auto;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--dark-blue);  /* Dark blue text for mobile menu */
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--dark-blue);  /* Dark blue hamburger icon */
    }
    
    /* Hero Sections */
    .hero-slider {
        height: 400px;
        margin-top: 180px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    /* Content Elements */
    .intro-text h2 {
        font-size: 32px;
    }
    
    .intro-text p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    /* Grid Systems */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Newsletter */
    .newsletter-form .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form button {
        justify-content: center;
        width: 100%;
    }
    
    /* Cookie Consent */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: 100%;
    }
    
    .cookie-settings-modal .modal-content {
        max-height: 80vh;
        margin: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Footer */
    .footer-logo img {
        height: 70px;
    }
    
    .footer-logo span {
        font-size: 28px;
    }
    
    .bottom-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    /* Contact Modal */
    .contact-modal .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    /* Contact Panel - Mobile Version */
    .contact-panel {
        display: none;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo-img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .phone-info, .email-info {
        font-size: 13px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 300px;
        margin-top: 190px;
    }
    
    .slide-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /* Slider Controls */
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Content Elements */
    .intro-text h2 {
        font-size: 28px;
    }
    
    .intro-text p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    /* Footer */
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-logo span {
        font-size: 24px;
    }
    
    .newsletter-section {
        padding: 30px 20px;
    }
    
    .newsletter-content h3 {
        font-size: 24px;
    }
    
    /* Contact Modal */
    .contact-modal .modal-content {
        padding: 25px 15px;
        margin: 10px;
    }
    
    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Cookie Buttons */
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Mobile Small (400px - 575px) */
@media (max-width: 400px) {
    /* Header */
    .header-center span {
        font-size: 12px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 250px;
    }
    
    .slide-content h1 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 14px;
    }
    
    /* Modal Content */
    .modal-body,
    .modal-header,
    .modal-footer {
        padding: 15px;
    }
    
    /* Footer */
    .footer-links-bottom {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links-bottom a {
        font-size: 12px;
    }
}

/* Very Small Mobile (Below 400px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .hero-slider {
        height: 220px;
        margin-top: 200px;
    }
    
    .slide-content h1 {
        font-size: 18px;
    }
    
    .slide-content p {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Print Styles */
@media print {
    .top-header,
    .main-nav,
    .contact-panel,
    .cookie-consent,
    .cookie-settings-modal,
    .contact-modal,
    .back-to-top,
    .footer-social,
    .newsletter-section,
    .footer-links-bottom,
    .hamburger {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-slider {
        height: auto;
        margin-top: 0;
    }
    
    .slide {
        position: static;
        opacity: 1;
        height: auto;
    }
    
    .slide-image {
        display: none;
    }
    
    .slide-content {
        position: static;
        transform: none;
        color: #000;
        text-shadow: none;
        padding: 20px 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .main-footer {
        background: #fff;
        color: #000;
        border-top: 1px solid #000;
        padding-top: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .footer-column h3 {
        color: #000;
    }
    
    .footer-description,
    .footer-tagline {
        color: #333;
    }
    
    .footer-links a,
    .footer-contacts a {
        color: #333;
    }
    
    .section-title {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    @page {
        margin: 2cm;
    }
}