/*
Theme Name: Kvadra Theme
Author: You
Version: 1.0
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ============================================
  EDITOR FIX
============================================ */

.about-img {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.about-img img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.year-badge {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    background: #FFD936 !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
    z-index: 10 !important;
    text-align: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.year-badge .big {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #1A1A1A !important;
    line-height: 1 !important;
    margin: 0 0 2px 0 !important;
}

.year-badge .sm {
    font-size: 0.5rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: rgba(0, 0, 0, 0.5) !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

/* In the WordPress editor - make overlay always visible */
.editor-styles-wrapper .port-overlay,
.block-editor-block-list__layout .port-overlay {
    opacity: 1 !important;
    background: rgba(26, 26, 26, 0.7) !important;
    display: flex !important;
    align-items: flex-end !important;
    padding: 20px !important;
    position: absolute !important;
    inset: 0 !important;
}

.editor-styles-wrapper .port-overlay small,
.block-editor-block-list__layout .port-overlay small {
    color: #FFD936 !important;
    font-size: 0.55rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    display: block !important;
    margin-bottom: 2px !important;
}

.editor-styles-wrapper .port-overlay span,
.block-editor-block-list__layout .port-overlay span {
    color: #FFFFFF !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
}

/* Make sure the text wrapper inside overlay displays properly */
.editor-styles-wrapper .port-overlay .wp-block-group,
.block-editor-block-list__layout .port-overlay .wp-block-group {
    width: 100% !important;
}

/* Keep original hover effect on live site */
.port-card {
    position: relative !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    aspect-ratio: 4/3 !important;
    cursor: pointer !important;
}

.port-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.port-card:hover img {
    transform: scale(1.05) !important;
}

.port-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent 55%) !important;
    display: flex !important;
    align-items: flex-end !important;
    padding: 20px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    pointer-events: none !important; /* Allows clicking through to image if needed */
}

.port-card:hover .port-overlay {
    opacity: 1 !important;
}

.port-overlay small {
    font-size: 0.55rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #FFD936 !important;
    display: block !important;
    margin-bottom: 2px !important;
}

.port-overlay span {
    font-size: 0.88rem !important;
    color: #FFFFFF !important;
    font-weight: 500 !important;
}


/* ============================================
   TABLE OF CONTENTS
============================================ */
/* 1. WordPress Reset
   2. CSS Variables (Root)
   3. Global Styles
   4. Top Bar
   5. Header & Navigation
   6. Hero Section
   7. Hero Buttons (WordPress Compatible)
   8. Features Row
   9. Sections (General)
   10. Services Section
   11. About Section
   12. Portfolio Section
   13. Testimonials Section
   14. CTA Section
   15. Contact Section
   16. Footer
   17. Reveal Animations
   18. Responsive Styles
   19. Color Presets (WordPress Compatible) */

/* ============================================
   1. WORDPRESS RESET
============================================ */
.entry-content > *,
.wp-block-group,
.wp-block-cover,
.wp-block-columns,
.wp-block-column {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.wp-block-group {
    padding: 0;
}

.wp-block-cover__inner-container {
    width: 100%;
}

/* ============================================
   2. CSS VARIABLES
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #FCFCFA;
    --white: #FFFFFF;
    --card: #FFFFFF;
    --yellow: #FFD936;
    --yellow-pale: #FFF8DC;
    --yellow-dark: #E6C22E;
    --dark: #1A1A1A;
    --gray: #4A4A4A;
    --gray-mid: #777777;
    --gray-light: #AAAAAA;
    --gray-border: #EBEBEB;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   3. GLOBAL STYLES
============================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   4. TOP BAR
============================================ */
.topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: var(--yellow);
    font-weight: 600;
    margin-left: 14px;
}

.topbar a:hover {
    color: #fff;
}

/* ============================================
   5. HEADER & NAVIGATION
============================================ */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    margin: 0;
    position: relative;
    background-color: white;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
}

.logo .sq {
    width: 38px;
    height: 38px;
    border: 1px solid #FFD936;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: #FFD936;
    color: #111;
    border-radius: 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-text .sub {
    font-size: 11px;
    opacity: 0.7;
    letter-spacing: 1px;
    color: #777;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    align-items: center;
}

.menu a {
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.menu a:hover {
    color: #000;
}

.menu {
    position: static;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    color: #111;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav-btn {
    background: #FFD936;
    color: #111;
    padding: 10px 16px;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 6px;
    font-weight: 600;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #E6C22E;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}

/* ============================================
   6. HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero .wp-block-cover__background {
    background: linear-gradient(to right, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.35) 55%, transparent 100%) !important;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.hero-inner {
    max-width: 540px;
}

.hero-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #FFD936 !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #1A1A1A !important;
    margin-bottom: 20px !important;
    width: auto !important;
    border: none !important;
}

.wp-block-button.hero-label,
.wp-block-button.hero-label .wp-block-button__link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #FFD936 !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #1A1A1A !important;
    margin-bottom: 20px !important;
    width: auto !important;
    border: none !important;
    pointer-events: none !important;
}

.hero h1,
.hero .wp-block-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
    color: #fff !important;
    margin-bottom: 18px !important;
}

.hero-sub {
    font-size: 0.92rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
    max-width: 440px !important;
		margin-left: 0px !important;
    margin-bottom: 28px !important;
    line-height: 1.8 !important;
}

.hero-trust {
    display: flex !important;
    gap: 48px !important;
    flex-wrap: wrap !important;
}

.trust-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.trust-item .num {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #FFD936 !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.trust-item .txt {
    font-size: 0.58rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 2px !important;
}

/* ============================================
   7. HERO BUTTONS (WORDPRESS COMPATIBLE - FIXED)
============================================ */

/* Completely remove WordPress button wrapper styling */
.wp-block-buttons {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wp-block-button {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    display: inline-block !important;
}

/* Reset the inner link completely */
.wp-block-button__link {
    all: unset !important;
    display: inline-block !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

/* Hero buttons container */
.hero-btns {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 40px !important;
}

/* Yellow Button - Style ONLY the inner link */
.btn-yellow .wp-block-button__link,
.wp-block-button.btn-yellow .wp-block-button__link,
.btn-yellow > .wp-block-button__link {
    background: #FFD936 !important;
    color: #1A1A1A !important;
    padding: 14px 32px !important;
    border-radius: 6px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: none !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.btn-yellow .wp-block-button__link:hover,
.wp-block-button.btn-yellow .wp-block-button__link:hover,
.btn-yellow > .wp-block-button__link:hover {
    background: #E6C22E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 28px rgba(255, 217, 54, 0.35) !important;
    color: #1A1A1A !important;
}

/* White Outline Button - Style ONLY the inner link */
.btn-white-o .wp-block-button__link,
.wp-block-button.btn-white-o .wp-block-button__link,
.btn-white-o > .wp-block-button__link {
    background: transparent !important;
    color: #FFFFFF !important;
    padding: 14px 32px !important;
    border-radius: 6px !important;
    font-size: 0.78rem !important;
    font-weight: 500 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}

.btn-white-o .wp-block-button__link:hover,
.wp-block-button.btn-white-o .wp-block-button__link:hover,
.btn-white-o > .wp-block-button__link:hover {
    border-color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: #FFFFFF !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Remove ANY background/border from the button wrapper itself */
.btn-yellow,
.btn-white-o {
    background: none !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
}

/* Fix for is-style-outline */
.is-style-outline .wp-block-button__link {
    background: transparent !important;
}

.is-style-outline.btn-white-o .wp-block-button__link {
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
}

.is-style-outline.btn-white-o .wp-block-button__link:hover {
    border-color: #FFFFFF !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

/* ============================================
   8. FEATURES ROW
============================================ */
.feat-row {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    padding: 0;
}

.feat-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    gap: 0 !important;
}

.feat-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 28px 24px !important;
    border-right: 1px solid var(--gray-border) !important;
}

.feat-item:last-child {
    border-right: none !important;
}

.feat-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    background: var(--yellow-pale) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

.feat-item h4 {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: var(--dark) !important;
    margin-bottom: 1px !important;
}

.feat-item p {
    font-size: 0.68rem !important;
    color: var(--gray-light) !important;
    line-height: 1.3 !important;
}

/* ============================================
   9. SECTIONS (GENERAL)
============================================ */
.section {
    padding: 100px 0;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow-dark);
    margin-bottom: 8px;
}

.tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--yellow);
}

.heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
			margin-bottom: 50px !important;
}

.subdesc {
    font-size: 0.85rem;
    color: var(--gray-mid);
    max-width: 440px;
    line-height: 1.7;
    margin-top: 10px;
}

.see-all {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
	
		margin-bottom: 50px !important;
}

.see-all:hover {
    color: var(--yellow-dark);
}

.see-all::after {
    content: '→';
}

/* ============================================
   10. SERVICES SECTION
============================================ */
.svc-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}

.svc-card {
    background: var(--card);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 32px 24px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
}

.svc-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.svc-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    transition: background 0.3s;
}

.svc-card:hover .svc-icon {
    background: var(--yellow);
}

.svc-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.svc-card p {
    font-size: 0.8rem;
    color: var(--gray-mid);
    line-height: 1.7;
}

.svc-card .link {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--yellow-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

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

/* ============================================
   ABOUT SECTION - FINAL
============================================ */
.about-section {
    background: #FFFFFF;
    padding: 100px 0;
}

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

.about-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.year-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFD936;
    padding: 12px 18px;
    border-radius: 8px;
    text-align: center;
}

.year-badge .big {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1;
    margin: 0;
}

.year-badge .sm {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-text .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E6C22E;
		margin: 0 !important;
    margin-bottom: 12px !important;
}

.about-text .tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: #FFD936;
}

.about-text .heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 0.88rem;
    color: #777777;
    line-height: 1.8;
    margin-bottom: 16px;
}

.check-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 20px !important;
    margin: 8px 0 24px 0 !important;
}

.check {
    display: flex;
    align-items: center;
    gap: 8px !important;
    font-size: 0.82rem;
    color: #4A4A4A;
    margin: 0 !important;
}

.check::before {
    content: '✓';
    color: #E6C22E;
    font-weight: 700;
    font-size: 0.85rem;
}

.about-text .btn-yellow,
.about-text .wp-block-button__link {
    background: #FFD936;
    color: #1A1A1A;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    text-decoration: none;
}

.about-text .btn-yellow:hover,
.about-text .wp-block-button__link:hover {
    background: #E6C22E;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 217, 54, 0.35);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .check-list {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        padding: 72px 0;
    }
}


/* Force reveal animation to show */
.reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================
   12. PORTFOLIO SECTION
============================================ */
.port-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

.port-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.port-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.port-card:hover img {
    transform: scale(1.05);
}

.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.port-card:hover .port-overlay {
    opacity: 1;
}

.port-overlay small {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    display: block;
    margin-bottom: 2px;
}

.port-overlay span {
    font-size: 0.88rem;
    color: #fff;
    font-weight: 500;
}

/* ============================================
   13. TESTIMONIALS SECTION
============================================ */
.testi-section {
    background: var(--yellow-pale);
}

.testi-box {
    background: var(--card);
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.testi-q {
    font-size: 3rem;
    color: var(--yellow);
    line-height: 0.8;
    margin-bottom: 8px;
}

.testi-text {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--dark);
}

.testi-bar {
    width: 24px;
    height: 2px;
    background: var(--yellow);
    margin: 0 auto 12px;
}

.testi-name {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
}

.testi-role {
    font-size: 0.75rem;
    color: var(--gray-mid);
}

/* ============================================
   14. CTA SECTION
============================================ */
.cta-section {
    background: var(--dark);
    padding: 80px 0;
}

.cta-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    align-items: center !important;
}

.cta-inner img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

.cta-text .tag {
    color: var(--yellow);
}

.cta-text .tag::before {
    background: var(--yellow);
}

.cta-text .heading {
    color: #fff;
    margin-bottom: 12px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

/* ============================================
   15. CONTACT SECTION - FIXED
============================================ */

.subdesc 
{
	margin: 0px !important;
	margin-bottom: 50px !important;
}

.ct-item .wp-block-group {
	margin: 0px !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: start !important;
			margin: 0px !important;
}

/* Contact Info Items */
.ct-item {
    display: flex !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    align-items: flex-start !important;
}

.ct-dot {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    background: #FFF8DC !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
}

.ct-item label {
    font-size: 0.55rem !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #AAAAAA !important;
    display: block !important;
    margin-bottom: 2px !important;
}

.ct-item p {
    font-size: 0.9rem !important;
    margin: 0 !important;
    color: #1A1A1A !important;
}

.ct-item a {
    color: #E6C22E !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

.ct-item a:hover {
    color: #1A1A1A !important;
}

/* Contact Form */
.ct-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.row2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
}

.ct-form input,
.ct-form textarea {
    width: 100% !important;
    background: #FFFFFF !important;
    border: 1px solid #EBEBEB !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    color: #1A1A1A !important;
    outline: none !important;
    transition: border 0.3s ease !important;
    box-sizing: border-box !important;
}

.ct-form input:focus,
.ct-form textarea:focus {
    border-color: #FFD936 !important;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
    color: #AAAAAA !important;
}

.ct-form textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

.ct-submit {
    background: #FFD936 !important;
    color: #1A1A1A !important;
    border: none !important;
    padding: 14px 36px !important;
    border-radius: 8px !important;
    font-size: 0.76rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
    align-self: flex-start !important;
    margin-top: 8px !important;
}

.ct-submit:hover {
    background: #E6C22E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 28px rgba(255, 217, 54, 0.35) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 640px) {
    .row2 {
        grid-template-columns: 1fr !important;
    }
    
    .ct-submit {
        width: 100% !important;
        text-align: center !important;
    }
}

/* ============================================
   16. FOOTER
============================================ */
footer {
    background: var(--dark);
    color: #fff;
    padding: 56px 0 24px;
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

.ft-brand .logo {
    margin-bottom: 10px;
}

.ft-brand .logo .sq {
    background: var(--yellow);
}

.ft-brand .logo-text .brand {
    color: var(--gray-mid);
}

.ft-brand .logo-text .sub {
    color: rgba(255, 255, 255, 0.3);
}

.ft-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    max-width: 260px;
}

.ft-col h4 {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--yellow);
    margin-bottom: 14px;
    font-weight: 600;
}

.ft-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 8px;
    transition: color 0.3s;
}

.ft-col a:hover {
    color: var(--yellow);
}

.ft-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft-bar p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

.ft-socials {
    display: flex;
    gap: 10px;
}

.ft-socials a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.76rem;
    transition: all 0.3s;
}

.ft-socials a:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* ============================================
   17. REVEAL ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   18. RESPONSIVE STYLES
============================================ */
@media (max-width: 992px) {
    .topbar {
        display: none;
    }
    
    .feat-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .svc-grid,
    .port-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .about-grid,
    .cta-inner,
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
    
    .ft-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .site-header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
    
    .logo {
        grid-column: 1;
    }
    
    .nav-btn {
        grid-column: 2;
        justify-self: center;
    }
    
    .menu-toggle {
        display: block;
        grid-column: 3;
        justify-self: end;
    }
    
    .nav-right {
        display: contents;
    }
    
    .nav-phone {
        display: none;
    }
    
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .menu.active {
        display: block;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .menu a {
        font-size: 16px;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .feat-grid,
    .svc-grid,
    .port-grid {
        grid-template-columns: 1fr !important;
    }
    
    .ft-grid {
        grid-template-columns: 1fr;
    }
    
    .row2 {
        grid-template-columns: 1fr;
    }
    
    .check-list {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 72px 0;
    }
}

/* ============================================
   19. COLOR PRESETS (WORDPRESS COMPATIBLE)
============================================ */
.has-gold-background-color {
    background-color: #FFD936 !important;
}

.has-gold-color {
    color: #FFD936 !important;
}

.has-dark-background-color {
    background-color: #1A1A1A !important;
}

.has-dark-color {
    color: #1A1A1A !important;
}

.has-gray-light-color {
    color: #AAAAAA !important;
}

.has-white-background-color {
    background-color: #FFFFFF !important;
}

.has-white-color {
    color: #FFFFFF !important;
}